Trait glib::error::ErrorDomain
source · [−]pub trait ErrorDomain: Copy {
fn domain() -> Quark;
fn code(self) -> i32;
fn from(code: i32) -> Option<Self>
where
Self: Sized;
}
Expand description
GLib
error domain.
This trait is implemented by error enums that represent error domains (types).
Required Methods
Returns the quark identifying the error domain.
As returned from g_some_error_quark
.
Implementors
impl ErrorDomain for FileError
impl ErrorDomain for KeyFileError
impl ErrorDomain for UriError
Available on crate feature
v2_66
only.