[][src]Trait fslock::IntoOsString

pub trait IntoOsString {
    fn into_os_string(self) -> Result<OsString, Error>;
}

Conversion of anything into an owned OS-native string. If allocation fails, an error shall be returned.

Required methods

fn into_os_string(self) -> Result<OsString, Error>

Converts with possible allocation error.

Loading content...

Implementations on Foreign Types

impl<'str> IntoOsString for &'str OsStr[src]

impl IntoOsString for PathBuf[src]

impl<'str> IntoOsString for &'str Path[src]

impl IntoOsString for OsString[src]

impl<'str> IntoOsString for &'str str[src]

impl IntoOsString for String[src]

Loading content...

Implementors

impl IntoOsString for fslock::OsString[src]

impl<'str> IntoOsString for &'str fslock::OsStr[src]

impl<'str> IntoOsString for EitherOsStr<'str>[src]

Loading content...