Struct gtk::Error []

pub struct Error(_);

A generic error capable of representing various error domains (types).

Methods

impl Error

Creates an error with supplied error enum variant and message.

Checks if the error domain matches T.

Tries to convert to a specific error enum.

Returns Some if the error belongs to the enum's error domain and None otherwise.

Examples

if let Some(file_error) = error.kind::<FileError>() {
    match file_error {
        FileError::Exist => ...
        FileError::Isdir => ...
        ...
    }
}
match error {
    Some(FileError::Exist) => ...
    Some(FileError::Isdir) => ...
    ...
}

Trait Implementations

impl Display for Error

Formats the value using the given formatter.

impl Error for Error

impl Debug for Error

Formats the value using the given formatter.

impl Clone for Error

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more