pub trait PathFlavour: Sized {
    type ParseError: Display;

    // Required method
    fn new_path<S: AsRef<OsStr> + ?Sized>(
        string: &S
    ) -> Result<&Path<Self>, Self::ParseError>;
}

Required Associated Types§

Required Methods§

source

fn new_path<S: AsRef<OsStr> + ?Sized>( string: &S ) -> Result<&Path<Self>, Self::ParseError>

Implementors§