pub enum NotifierStatus {
Active,
Passive,
NeedsAttention,
}Variants§
Trait Implementations§
Source§impl Clone for NotifierStatus
impl Clone for NotifierStatus
Source§fn clone(&self) -> NotifierStatus
fn clone(&self) -> NotifierStatus
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 NotifierStatus
impl Debug for NotifierStatus
Source§impl Default for NotifierStatus
impl Default for NotifierStatus
Source§fn default() -> NotifierStatus
fn default() -> NotifierStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NotifierStatus
impl<'de> Deserialize<'de> for NotifierStatus
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<NotifierStatus> for Value<'_>
impl From<NotifierStatus> for Value<'_>
Source§fn from(e: NotifierStatus) -> Self
fn from(e: NotifierStatus) -> Self
Converts to this type from the input type.
Source§impl PartialEq for NotifierStatus
impl PartialEq for NotifierStatus
Source§fn eq(&self, other: &NotifierStatus) -> bool
fn eq(&self, other: &NotifierStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NotifierStatus
impl Serialize for NotifierStatus
impl StructuralPartialEq for NotifierStatus
Source§impl TryFrom<NotifierStatus> for OwnedValue
impl TryFrom<NotifierStatus> for OwnedValue
Source§impl TryFrom<OwnedValue> for NotifierStatus
impl TryFrom<OwnedValue> for NotifierStatus
Source§impl TryFrom<Value<'_>> for NotifierStatus
impl TryFrom<Value<'_>> for NotifierStatus
Auto Trait Implementations§
impl Freeze for NotifierStatus
impl RefUnwindSafe for NotifierStatus
impl Send for NotifierStatus
impl Sync for NotifierStatus
impl Unpin for NotifierStatus
impl UnsafeUnpin for NotifierStatus
impl UnwindSafe for NotifierStatus
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<'de, T> DynamicDeserialize<'de> for Twhere
T: Type + Deserialize<'de>,
impl<'de, T> DynamicDeserialize<'de> for Twhere
T: Type + Deserialize<'de>,
Source§type Deserializer = PhantomData<T>
type Deserializer = PhantomData<T>
A DeserializeSeed implementation for this type.
Source§fn deserializer_for_signature(
signature: &Signature,
) -> Result<<T as DynamicDeserialize<'de>>::Deserializer, Error>
fn deserializer_for_signature( signature: &Signature, ) -> Result<<T as DynamicDeserialize<'de>>::Deserializer, Error>
Get a deserializer compatible with this parsed signature.