Trait nix::NixPath
[−]
[src]
pub trait NixPath { fn len(&self) -> usize; fn with_nix_path<T, F>(&self, f: F) -> Result<T>
where
F: FnOnce(&CStr) -> T; }
Required Methods
Implementations on Foreign Types
impl NixPath for str
[src]
impl NixPath for str
impl NixPath for OsStr
[src]
impl NixPath for OsStr
impl NixPath for CStr
[src]
impl NixPath for CStr
impl NixPath for [u8]
[src]
impl NixPath for [u8]
impl NixPath for Path
[src]
impl NixPath for Path
impl NixPath for PathBuf
[src]
impl NixPath for PathBuf
impl<'a, NP: ?Sized + NixPath> NixPath for Option<&'a NP>
[src]
impl<'a, NP: ?Sized + NixPath> NixPath for Option<&'a NP>
Treats None
as an empty string.