pub enum NotifierCreateError {
Interrupt,
DoesNotExist,
InsufficientPermissions,
VersionMismatch,
InitializationNotYetFinalized,
InternalFailure,
}Variants§
Interrupt
DoesNotExist
InsufficientPermissions
VersionMismatch
InitializationNotYetFinalized
InternalFailure
Trait Implementations§
Source§impl Clone for NotifierCreateError
impl Clone for NotifierCreateError
Source§fn clone(&self) -> NotifierCreateError
fn clone(&self) -> NotifierCreateError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for NotifierCreateError
impl Debug for NotifierCreateError
Source§impl Display for NotifierCreateError
impl Display for NotifierCreateError
Source§impl Error for NotifierCreateError
impl Error for NotifierCreateError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + '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()
Source§impl PartialEq for NotifierCreateError
impl PartialEq for NotifierCreateError
Source§fn eq(&self, other: &NotifierCreateError) -> bool
fn eq(&self, other: &NotifierCreateError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for NotifierCreateError
impl Eq for NotifierCreateError
impl StructuralPartialEq for NotifierCreateError
Auto Trait Implementations§
impl Freeze for NotifierCreateError
impl RefUnwindSafe for NotifierCreateError
impl Send for NotifierCreateError
impl Sync for NotifierCreateError
impl Unpin for NotifierCreateError
impl UnsafeUnpin for NotifierCreateError
impl UnwindSafe for NotifierCreateError
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