pub enum ReminderMethod {
Email,
Popup,
Sms,
Push,
}Expand description
Variants§
Trait Implementations§
Source§impl Clone for ReminderMethod
impl Clone for ReminderMethod
Source§fn clone(&self) -> ReminderMethod
fn clone(&self) -> ReminderMethod
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 ReminderMethod
impl Debug for ReminderMethod
Source§impl Default for ReminderMethod
impl Default for ReminderMethod
Source§fn default() -> ReminderMethod
fn default() -> ReminderMethod
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReminderMethod
impl<'de> Deserialize<'de> for ReminderMethod
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 Display for ReminderMethod
impl Display for ReminderMethod
Source§impl Hash for ReminderMethod
impl Hash for ReminderMethod
Source§impl Ord for ReminderMethod
impl Ord for ReminderMethod
Source§fn cmp(&self, other: &ReminderMethod) -> Ordering
fn cmp(&self, other: &ReminderMethod) -> Ordering
1.21.0 (const: unstable) · 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 ReminderMethod
impl PartialEq for ReminderMethod
Source§fn eq(&self, other: &ReminderMethod) -> bool
fn eq(&self, other: &ReminderMethod) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ReminderMethod
impl PartialOrd for ReminderMethod
Source§impl Serialize for ReminderMethod
impl Serialize for ReminderMethod
impl Copy for ReminderMethod
impl Eq for ReminderMethod
impl StructuralPartialEq for ReminderMethod
Auto Trait Implementations§
impl Freeze for ReminderMethod
impl RefUnwindSafe for ReminderMethod
impl Send for ReminderMethod
impl Sync for ReminderMethod
impl Unpin for ReminderMethod
impl UnsafeUnpin for ReminderMethod
impl UnwindSafe for ReminderMethod
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