Error

Trait Error 

Source
pub trait Error: Sized + StdError {
    // Required method
    fn custom<T: Display>(msg: T) -> Self;

    // Provided methods
    fn io_error(err: Error) -> Self { ... }
    fn unsupported_data<T: Display>(msg: T) -> Self { ... }
    fn invalid_enum<T: Display>(msg: T) -> Self { ... }
}
Available on crate feature wire only.

Required Methods§

Source

fn custom<T: Display>(msg: T) -> Self

Provided Methods§

Source

fn io_error(err: Error) -> Self

Source

fn unsupported_data<T: Display>(msg: T) -> Self

Source

fn invalid_enum<T: Display>(msg: T) -> 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.

Implementations on Foreign Types§

Source§

impl Error for Error

Source§

fn custom<T: Display>(msg: T) -> Self

Source§

fn io_error(err: Error) -> Self

Source§

fn unsupported_data<T: Display>(msg: T) -> Self

Implementors§

Source§

impl Error for nix_compat::wire::ser::mock::Error

Available on crate features test only.