pub trait IntoPath {
type IntoPath;
// Required method
fn into_path(self) -> Self::IntoPath;
}Expand description
For converting a PathBuilder into the Path inside it.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".