pub struct Error { /* private fields */ }Expand description
An error that may occur during operation of this crate.
Implementations§
Source§impl Error
impl Error
Sourcepub fn make_msg<D: Display>(msg: D) -> Self
pub fn make_msg<D: Display>(msg: D) -> Self
Create a new error from something that can be formatted into a message.
Sourcepub fn unsupported(&self) -> bool
pub fn unsupported(&self) -> bool
Did this error happen as the result of calling an unsupported operation?
Sourcepub fn make_parse_error(pe: ParseError) -> Self
pub fn make_parse_error(pe: ParseError) -> Self
Create an error from an X11 parse error.
Sourcepub fn make_missing_extension(name: &'static str) -> Self
pub fn make_missing_extension(name: &'static str) -> Self
Create an error from a missing extension.
Sourcepub fn invalid_state(&self) -> bool
pub fn invalid_state(&self) -> bool
Did this error happen as a result of some state-based object entering an invalid state?
Sourcepub fn initialization(&self) -> bool
pub fn initialization(&self) -> bool
Did this error occur during initialization of the X11 connection?
Sourcepub fn as_setup_failure(&self) -> Option<&SetupFailure>
pub fn as_setup_failure(&self) -> Option<&SetupFailure>
Get the inner setup failure that this error is a wrapper around.
Sourcepub fn into_setup_failure(self) -> Result<SetupFailure>
pub fn into_setup_failure(self) -> Result<SetupFailure>
Convert this error into a setup failure.
Trait Implementations§
Source§impl Error for Error
impl Error for Error
Source§fn source(&self) -> Option<&(dyn StdError + 'static)>
fn source(&self) -> Option<&(dyn StdError + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for Error
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more