pub trait PathErrorExt<T> {
// Required method
fn with_path(self, path: impl Into<PathBuf>) -> Result<T, SsgError>;
}Expand description
Context extension trait for mapping std::io::Error contexts with path info.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".