pub struct PaymentMethodDetailsCardChecks {
pub address_line1_check: Option<String>,
pub address_postal_code_check: Option<String>,
pub cvc_check: Option<String>,
}Fields§
§address_line1_check: Option<String>If a address line1 was provided, results of the check, one of pass, fail, unavailable, or unchecked.
address_postal_code_check: Option<String>If a address postal code was provided, results of the check, one of pass, fail, unavailable, or unchecked.
cvc_check: Option<String>If a CVC was provided, results of the check, one of pass, fail, unavailable, or unchecked.
Trait Implementations§
Source§impl Clone for PaymentMethodDetailsCardChecks
impl Clone for PaymentMethodDetailsCardChecks
Source§fn clone(&self) -> PaymentMethodDetailsCardChecks
fn clone(&self) -> PaymentMethodDetailsCardChecks
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 FromValueOpt for PaymentMethodDetailsCardChecks
impl FromValueOpt for PaymentMethodDetailsCardChecks
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for PaymentMethodDetailsCardChecks
impl PartialEq for PaymentMethodDetailsCardChecks
Source§fn eq(&self, other: &PaymentMethodDetailsCardChecks) -> bool
fn eq(&self, other: &PaymentMethodDetailsCardChecks) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PaymentMethodDetailsCardChecks
impl StructuralPartialEq for PaymentMethodDetailsCardChecks
Auto Trait Implementations§
impl Freeze for PaymentMethodDetailsCardChecks
impl RefUnwindSafe for PaymentMethodDetailsCardChecks
impl Send for PaymentMethodDetailsCardChecks
impl Sync for PaymentMethodDetailsCardChecks
impl Unpin for PaymentMethodDetailsCardChecks
impl UnsafeUnpin for PaymentMethodDetailsCardChecks
impl UnwindSafe for PaymentMethodDetailsCardChecks
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