pub enum CCPaymentStatus {
Completed,
Unkown,
}Expand description
CCPaymentStatus Enum
Status of the credit card payment
Variants§
Trait Implementations§
Source§impl Clone for CCPaymentStatus
impl Clone for CCPaymentStatus
Source§fn clone(&self) -> CCPaymentStatus
fn clone(&self) -> CCPaymentStatus
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 CCPaymentStatus
impl Debug for CCPaymentStatus
Source§impl Default for CCPaymentStatus
impl Default for CCPaymentStatus
Source§fn default() -> CCPaymentStatus
fn default() -> CCPaymentStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CCPaymentStatus
impl<'de> Deserialize<'de> for CCPaymentStatus
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 PartialEq for CCPaymentStatus
impl PartialEq for CCPaymentStatus
Source§impl Serialize for CCPaymentStatus
impl Serialize for CCPaymentStatus
impl StructuralPartialEq for CCPaymentStatus
Auto Trait Implementations§
impl Freeze for CCPaymentStatus
impl RefUnwindSafe for CCPaymentStatus
impl Send for CCPaymentStatus
impl Sync for CCPaymentStatus
impl Unpin for CCPaymentStatus
impl UnwindSafe for CCPaymentStatus
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