pub struct PaymentMethodCardChecks {
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 PaymentMethodCardChecks
impl Clone for PaymentMethodCardChecks
Source§fn clone(&self) -> PaymentMethodCardChecks
fn clone(&self) -> PaymentMethodCardChecks
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 Debug for PaymentMethodCardChecks
impl Debug for PaymentMethodCardChecks
Source§impl FromValueOpt for PaymentMethodCardChecks
impl FromValueOpt for PaymentMethodCardChecks
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for PaymentMethodCardChecks
impl PartialEq for PaymentMethodCardChecks
Source§fn eq(&self, other: &PaymentMethodCardChecks) -> bool
fn eq(&self, other: &PaymentMethodCardChecks) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PaymentMethodCardChecks
impl StructuralPartialEq for PaymentMethodCardChecks
Auto Trait Implementations§
impl Freeze for PaymentMethodCardChecks
impl RefUnwindSafe for PaymentMethodCardChecks
impl Send for PaymentMethodCardChecks
impl Sync for PaymentMethodCardChecks
impl Unpin for PaymentMethodCardChecks
impl UnsafeUnpin for PaymentMethodCardChecks
impl UnwindSafe for PaymentMethodCardChecks
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