Struct stripe::model::PaymentMethodCard
source · pub struct PaymentMethodCard {
pub brand: String,
pub checks: Option<Value>,
pub country: Option<String>,
pub exp_month: i64,
pub exp_year: i64,
pub fingerprint: Option<String>,
pub funding: String,
pub generated_from: Option<Value>,
pub last4: String,
pub networks: Option<Value>,
pub three_d_secure_usage: Option<Value>,
pub wallet: Option<Value>,
}Fields§
§brand: String§checks: Option<Value>§country: Option<String>§exp_month: i64§exp_year: i64§fingerprint: Option<String>§funding: String§generated_from: Option<Value>§last4: String§networks: Option<Value>§three_d_secure_usage: Option<Value>§wallet: Option<Value>Trait Implementations§
source§impl Clone for PaymentMethodCard
impl Clone for PaymentMethodCard
source§fn clone(&self) -> PaymentMethodCard
fn clone(&self) -> PaymentMethodCard
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 PaymentMethodCard
impl Debug for PaymentMethodCard
source§impl Default for PaymentMethodCard
impl Default for PaymentMethodCard
source§fn default() -> PaymentMethodCard
fn default() -> PaymentMethodCard
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for PaymentMethodCard
impl<'de> Deserialize<'de> for PaymentMethodCard
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 PaymentMethodCard
impl Display for PaymentMethodCard
Auto Trait Implementations§
impl RefUnwindSafe for PaymentMethodCard
impl Send for PaymentMethodCard
impl Sync for PaymentMethodCard
impl Unpin for PaymentMethodCard
impl UnwindSafe for PaymentMethodCard
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