pub struct PaymentIntentProcessing {
pub card: Option<PaymentIntentCardProcessing>,
pub type_: PaymentIntentProcessingType,
}Fields§
§card: Option<PaymentIntentCardProcessing>§type_: PaymentIntentProcessingTypeType of the payment method for which payment is in processing state, one of card.
Trait Implementations§
Source§impl Clone for PaymentIntentProcessing
impl Clone for PaymentIntentProcessing
Source§fn clone(&self) -> PaymentIntentProcessing
fn clone(&self) -> PaymentIntentProcessing
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 moreSource§impl Debug for PaymentIntentProcessing
impl Debug for PaymentIntentProcessing
Source§impl FromValueOpt for PaymentIntentProcessing
impl FromValueOpt for PaymentIntentProcessing
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentIntentProcessing
impl RefUnwindSafe for PaymentIntentProcessing
impl Send for PaymentIntentProcessing
impl Sync for PaymentIntentProcessing
impl Unpin for PaymentIntentProcessing
impl UnwindSafe for PaymentIntentProcessing
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