pub(crate) trait IoResultExt<T> {
// Required method
fn with_err_path<F, P>(self, path: F) -> Self
where F: FnOnce() -> P,
P: Into<PathBuf>;
}
Required Methods§
fn with_err_path<F, P>(self, path: F) -> Self
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.