pub trait ToNormalPathComponents {
// Required method
fn to_normal_path_components(
&self,
) -> impl Iterator<Item = Result<&OsStr, Error>>;
}
Expand description
Obtain an iterator over OsStr
-components which are normal, none-relative and not absolute.
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.