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