pub trait ToAbsPathBuf: AsRef<Path> {
// Required method
fn to_abs_path_buf(&self) -> Result<AbsPathBuf>;
}Required Methods§
fn to_abs_path_buf(&self) -> Result<AbsPathBuf>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".