Struct glib::error::Error [−][src]
pub struct Error(_);
A generic error capable of representing various error domains (types).
Methods
impl Error
[src]
impl Error
pub fn new<T: ErrorDomain>(error: T, message: &str) -> Error
[src]
pub fn new<T: ErrorDomain>(error: T, message: &str) -> Error
Creates an error with supplied error enum variant and message.
pub fn is<T: ErrorDomain>(&self) -> bool
[src]
pub fn is<T: ErrorDomain>(&self) -> bool
Checks if the error domain matches T
.
pub fn kind<T: ErrorDomain>(&self) -> Option<T>
[src]
pub fn kind<T: ErrorDomain>(&self) -> Option<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) => ... ... }
pub fn wrap(ptr: *mut GError) -> Error
[src]
pub fn wrap(ptr: *mut GError) -> Error
Trait Implementations
impl PartialEq for Error
[src]
impl PartialEq for Error
fn eq(&self, other: &Error) -> bool
[src]
fn eq(&self, other: &Error) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Error) -> bool
[src]
fn ne(&self, other: &Error) -> bool
This method tests for !=
.
impl Eq for Error
[src]
impl Eq for Error
impl PartialOrd for Error
[src]
impl PartialOrd for Error
fn partial_cmp(&self, other: &Error) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &Error) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, other: &Error) -> bool
[src]
fn lt(&self, other: &Error) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, other: &Error) -> bool
[src]
fn le(&self, other: &Error) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, other: &Error) -> bool
[src]
fn gt(&self, other: &Error) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, other: &Error) -> bool
[src]
fn ge(&self, other: &Error) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl Ord for Error
[src]
impl Ord for Error
fn cmp(&self, other: &Error) -> Ordering
[src]
fn cmp(&self, other: &Error) -> Ordering
This method returns an Ordering
between self
and other
. Read more
fn max(self, other: Self) -> Self
1.21.0[src]
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.21.0[src]
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
impl Hash for Error
[src]
impl Hash for Error
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
Feeds this value into the given [Hasher
]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl Clone for Error
[src]
impl Clone for Error
fn clone(&self) -> Error
[src]
fn clone(&self) -> Error
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl StaticType for Error
[src]
impl StaticType for Error
fn static_type() -> Type
[src]
fn static_type() -> Type
Returns the type identifier of Self
.
impl Send for Error
[src]
impl Send for Error
impl Sync for Error
[src]
impl Sync for Error
impl Display for Error
[src]
impl Display for Error
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Error for Error
[src]
impl Error for Error
fn description(&self) -> &str
[src]
fn description(&self) -> &str
This method is soft-deprecated. Read more
fn cause(&self) -> Option<&Error>
1.0.0[src]
fn cause(&self) -> Option<&Error>
The lower-level cause of this error, if any. Read more
impl Debug for Error
[src]
impl Debug for Error