pub trait IntoPathBuf {
// Required method
fn into_path_buf(self) -> Result<PathBuf, IntoPathBufError>;
}Available on crate feature
fs only.Required Methods§
fn into_path_buf(self) -> Result<PathBuf, IntoPathBufError>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".