pub trait ErrorExt {
Show 14 methods
// Required methods
fn not_found() -> Self;
fn too_big() -> Self;
fn badf() -> Self;
fn exist() -> Self;
fn illegal_byte_sequence() -> Self;
fn invalid_argument() -> Self;
fn io() -> Self;
fn name_too_long() -> Self;
fn not_dir() -> Self;
fn not_supported() -> Self;
fn overflow() -> Self;
fn range() -> Self;
fn seek_pipe() -> Self;
fn perm() -> Self;
}
Required Methods§
fn not_found() -> Self
fn too_big() -> Self
fn badf() -> Self
fn exist() -> Self
fn illegal_byte_sequence() -> Self
fn invalid_argument() -> Self
fn io() -> Self
fn name_too_long() -> Self
fn not_dir() -> Self
fn not_supported() -> Self
fn overflow() -> Self
fn range() -> Self
fn seek_pipe() -> Self
fn perm() -> 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.