Trait better_path::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>;
}