pub enum MessageReason {
Generic,
PriceIncreaseConsent,
BillingIssue,
WinBackOffer,
Unknown(i64),
}Variants§
Trait Implementations§
Source§impl Clone for MessageReason
impl Clone for MessageReason
Source§fn clone(&self) -> MessageReason
fn clone(&self) -> MessageReason
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 MessageReason
impl Debug for MessageReason
Source§impl PartialEq for MessageReason
impl PartialEq for MessageReason
Source§fn eq(&self, other: &MessageReason) -> bool
fn eq(&self, other: &MessageReason) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for MessageReason
impl StructuralPartialEq for MessageReason
Auto Trait Implementations§
impl Freeze for MessageReason
impl RefUnwindSafe for MessageReason
impl Send for MessageReason
impl Sync for MessageReason
impl Unpin for MessageReason
impl UnsafeUnpin for MessageReason
impl UnwindSafe for MessageReason
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