]> git.lizzy.rs Git - rust.git/blob - src/libstd/rt/io/support.rs
7bace5d6df2ccfdba1cfe7538ab05cbed10da6cb
[rust.git] / src / libstd / rt / io / support.rs
1 // Copyright 2013 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 use path::*;
12
13 pub trait PathLike {
14     fn path_as_str<T>(&self, f: &fn(&str) -> T) -> T;
15 }
16
17 impl<'self> PathLike for &'self str {
18     fn path_as_str<T>(&self, f: &fn(&str) -> T) -> T {
19         f(*self)
20     }
21 }
22
23 impl PathLike for Path {
24     fn path_as_str<T>(&self, f: &fn(&str) -> T) -> T {
25         let s = self.to_str();
26         f(s)
27     }
28 }
29
30 #[cfg(test)]
31 mod test {
32     use path::*;
33     use super::PathLike;
34
35     #[test]
36     fn path_like_smoke_test() {
37         let expected = "/home";
38         let path = Path(expected);
39         path.path_as_str(|p| assert!(p == expected));
40         path.path_as_str(|p| assert!(p == expected));
41     }
42 }