Struct gdk::Error
[−]
[src]
pub struct Error(_);
A generic error capable of representing various error domains (types).
Methods
impl Error
[src]
fn new<T>(error: T, message: &str) -> Error where
T: ErrorDomain,
T: ErrorDomain,
Creates an error with supplied error enum variant and message.
fn is<T>(&self) -> bool where
T: ErrorDomain,
T: ErrorDomain,
Checks if the error domain matches T
.
fn kind<T>(&self) -> Option<T> where
T: ErrorDomain,
T: ErrorDomain,
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) => ... ... }
fn wrap(ptr: *mut GError) -> Error
Trait Implementations
impl Clone for Error
[src]
fn clone(&self) -> Error
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl Error for Error
[src]
fn description(&self) -> &str
impl Debug for Error
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter.