pub enum EndUserNotification {
NotifyUser,
Silent,
}Expand description
Determines if a notification will be shown to the end user (omit to keep current)
Variants§
Trait Implementations§
Source§impl Clone for EndUserNotification
impl Clone for EndUserNotification
Source§fn clone(&self) -> EndUserNotification
fn clone(&self) -> EndUserNotification
Returns a duplicate of the value. Read more
1.0.0 · 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 EndUserNotification
impl Debug for EndUserNotification
Source§impl Default for EndUserNotification
impl Default for EndUserNotification
Source§fn default() -> EndUserNotification
fn default() -> EndUserNotification
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EndUserNotification
impl<'de> Deserialize<'de> for EndUserNotification
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 Hash for EndUserNotification
impl Hash for EndUserNotification
Source§impl Ord for EndUserNotification
impl Ord for EndUserNotification
Source§fn cmp(&self, other: &EndUserNotification) -> Ordering
fn cmp(&self, other: &EndUserNotification) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for EndUserNotification
impl PartialEq for EndUserNotification
Source§impl PartialOrd for EndUserNotification
impl PartialOrd for EndUserNotification
Source§impl Serialize for EndUserNotification
impl Serialize for EndUserNotification
impl Copy for EndUserNotification
impl Eq for EndUserNotification
impl StructuralPartialEq for EndUserNotification
Auto Trait Implementations§
impl Freeze for EndUserNotification
impl RefUnwindSafe for EndUserNotification
impl Send for EndUserNotification
impl Sync for EndUserNotification
impl Unpin for EndUserNotification
impl UnwindSafe for EndUserNotification
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