Enum wayland_client::GlobalError
source · pub enum GlobalError {
Missing,
VersionTooLow(u32),
}
Expand description
An error that occurred trying to bind a global
Variants§
Missing
The requested global was missing
VersionTooLow(u32)
The global advertised by the server has a lower version number than the one requested
Trait Implementations§
source§impl Debug for GlobalError
impl Debug for GlobalError
source§impl Display for GlobalError
impl Display for GlobalError
source§impl Error for GlobalError
impl Error for GlobalError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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()
source§impl PartialEq for GlobalError
impl PartialEq for GlobalError
source§fn eq(&self, other: &GlobalError) -> bool
fn eq(&self, other: &GlobalError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GlobalError
Auto Trait Implementations§
impl RefUnwindSafe for GlobalError
impl Send for GlobalError
impl Sync for GlobalError
impl Unpin for GlobalError
impl UnwindSafe for GlobalError
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