Home
last modified time | relevance | path

Searched defs:CanonicalPath (Results 1 – 2 of 2) sorted by relevance

/third_party/rust/crates/which-rs/src/
Dlib.rs515 pub struct CanonicalPath { struct
519 impl CanonicalPath { implementation
523 pub fn new<T: AsRef<OsStr>>(binary_name: T) -> Result<CanonicalPath> { in new()
595 impl fmt::Debug for CanonicalPath { implementation
601 impl std::ops::Deref for CanonicalPath { implementation
609 impl AsRef<path::Path> for CanonicalPath { implementation
615 impl AsRef<OsStr> for CanonicalPath { implementation
621 impl PartialEq<path::PathBuf> for CanonicalPath { implementation
/third_party/rust/crates/which-rs/tests/
Dbasic.rs91 fn _which<T: AsRef<OsStr>>(f: &TestFixture, path: T) -> which::Result<which::CanonicalPath> { in _which()