[−][src]Struct stripe::PaymentMethodCard
Fields
brand: Option<CardBrand>Can be American Express, Diners Club, Discover, JCB, MasterCard, UnionPay, Visa, or Unknown.
country: StringTwo-letter ISO code representing the country of the card.
You could use this attribute to get a sense of the international breakdown of cards you've collected.
exp_month: i64Two-digit number representing the card's expiration month.
exp_year: i64Four-digit number representing the card's expiration year.
fingerprint: StringUniquely identifies this particular card number.
You can use this attribute to check whether two customers who've signed up with you are using the same card number, for example.
funding: Option<CardType>Card funding type.
Can be credit, debit, prepaid, or unknown.
last4: StringThe last four digits of the card.
Trait Implementations
impl Clone for PaymentMethodCard[src]
fn clone(&self) -> PaymentMethodCard[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for PaymentMethodCard[src]
impl Default for PaymentMethodCard[src]
fn default() -> PaymentMethodCard[src]
impl<'de> Deserialize<'de> for PaymentMethodCard[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Serialize for PaymentMethodCard[src]
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
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,