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§
type ParseError: Display
Required Methods§
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.