pub trait IoErrorPathExt {
// Required methods
fn offending_path(&self) -> Option<&Path>;
fn soft_canon_detail(&self) -> Option<&str>;
}Expand description
Extension to extract our path-aware payload from io::Error.
Required Methods§
fn offending_path(&self) -> Option<&Path>
fn soft_canon_detail(&self) -> Option<&str>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".