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