Trait PathFlavour

Source
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>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§