Lines Matching refs:NixPath
181 pub trait NixPath { trait
196 impl NixPath for str {
198 NixPath::is_empty(OsStr::new(self)) in is_empty()
202 NixPath::len(OsStr::new(self)) in len()
213 impl NixPath for OsStr {
230 impl NixPath for CStr {
247 impl NixPath for [u8] { impl
301 impl NixPath for Path {
303 NixPath::is_empty(self.as_os_str()) in is_empty()
307 NixPath::len(self.as_os_str()) in len()
318 impl NixPath for PathBuf {
320 NixPath::is_empty(self.as_os_str()) in is_empty()
324 NixPath::len(self.as_os_str()) in len()