pub trait WithPath {
// Required method
fn with_path<PathT>(self, path: PathT) -> Self
where PathT: AsRef<Path>;
}
Expand description
With path.
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.