pub struct SetupAttemptPaymentMethodDetailsCardChecks {
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 SetupAttemptPaymentMethodDetailsCardChecks
impl Clone for SetupAttemptPaymentMethodDetailsCardChecks
Source§fn clone(&self) -> SetupAttemptPaymentMethodDetailsCardChecks
fn clone(&self) -> SetupAttemptPaymentMethodDetailsCardChecks
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for SetupAttemptPaymentMethodDetailsCardChecks
impl RefUnwindSafe for SetupAttemptPaymentMethodDetailsCardChecks
impl Send for SetupAttemptPaymentMethodDetailsCardChecks
impl Sync for SetupAttemptPaymentMethodDetailsCardChecks
impl Unpin for SetupAttemptPaymentMethodDetailsCardChecks
impl UnwindSafe for SetupAttemptPaymentMethodDetailsCardChecks
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