#[repr(i64)]pub enum MessageAttemptTriggerType {
Scheduled = 0,
Manual = 1,
}
Expand description
MessageAttemptTriggerType : The reason an attempt was made: - Scheduled = 0 - Manual = 1 The reason an attempt was made: - Scheduled = 0 - Manual = 1
Variants§
Trait Implementations§
Source§impl Clone for MessageAttemptTriggerType
impl Clone for MessageAttemptTriggerType
Source§fn clone(&self) -> MessageAttemptTriggerType
fn clone(&self) -> MessageAttemptTriggerType
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 MessageAttemptTriggerType
impl Debug for MessageAttemptTriggerType
Source§impl Default for MessageAttemptTriggerType
impl Default for MessageAttemptTriggerType
Source§fn default() -> MessageAttemptTriggerType
fn default() -> MessageAttemptTriggerType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MessageAttemptTriggerType
impl<'de> Deserialize<'de> for MessageAttemptTriggerType
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 MessageAttemptTriggerType
impl Display for MessageAttemptTriggerType
Source§impl Hash for MessageAttemptTriggerType
impl Hash for MessageAttemptTriggerType
Source§impl Ord for MessageAttemptTriggerType
impl Ord for MessageAttemptTriggerType
Source§fn cmp(&self, other: &MessageAttemptTriggerType) -> Ordering
fn cmp(&self, other: &MessageAttemptTriggerType) -> 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 PartialOrd for MessageAttemptTriggerType
impl PartialOrd for MessageAttemptTriggerType
impl Copy for MessageAttemptTriggerType
impl Eq for MessageAttemptTriggerType
impl StructuralPartialEq for MessageAttemptTriggerType
Auto Trait Implementations§
impl Freeze for MessageAttemptTriggerType
impl RefUnwindSafe for MessageAttemptTriggerType
impl Send for MessageAttemptTriggerType
impl Sync for MessageAttemptTriggerType
impl Unpin for MessageAttemptTriggerType
impl UnwindSafe for MessageAttemptTriggerType
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