Enum lockbook_shared::api::PaymentMethod
source · pub enum PaymentMethod {
NewCard {
number: String,
exp_year: i32,
exp_month: i32,
cvc: String,
},
OldCard,
}Variants§
Trait Implementations§
source§impl Clone for PaymentMethod
impl Clone for PaymentMethod
source§fn clone(&self) -> PaymentMethod
fn clone(&self) -> PaymentMethod
Returns a copy 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 PaymentMethod
impl Debug for PaymentMethod
source§impl<'de> Deserialize<'de> for PaymentMethod
impl<'de> Deserialize<'de> for PaymentMethod
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 PaymentMethod
impl PartialEq for PaymentMethod
source§fn eq(&self, other: &PaymentMethod) -> bool
fn eq(&self, other: &PaymentMethod) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for PaymentMethod
impl Serialize for PaymentMethod
impl Eq for PaymentMethod
impl StructuralPartialEq for PaymentMethod
Auto Trait Implementations§
impl Freeze for PaymentMethod
impl RefUnwindSafe for PaymentMethod
impl Send for PaymentMethod
impl Sync for PaymentMethod
impl Unpin for PaymentMethod
impl UnwindSafe for PaymentMethod
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