pub enum DeletedPaymentSource {
DeletedBankAccount(DeletedBankAccount),
DeletedCard(DeletedCard),
}
Expand description
The resource representing a Stripe Polymorphic
Variants§
DeletedBankAccount(DeletedBankAccount)
DeletedCard(DeletedCard)
Trait Implementations§
Source§impl Clone for DeletedPaymentSource
impl Clone for DeletedPaymentSource
Source§fn clone(&self) -> DeletedPaymentSource
fn clone(&self) -> DeletedPaymentSource
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 DeletedPaymentSource
impl Debug for DeletedPaymentSource
Source§impl Deserialize for DeletedPaymentSource
impl Deserialize for DeletedPaymentSource
Source§impl FromValueOpt for DeletedPaymentSource
impl FromValueOpt for DeletedPaymentSource
fn from_value(v: Value) -> Option<Self>
Source§impl Object for DeletedPaymentSource
impl Object for DeletedPaymentSource
Auto Trait Implementations§
impl Freeze for DeletedPaymentSource
impl RefUnwindSafe for DeletedPaymentSource
impl Send for DeletedPaymentSource
impl Sync for DeletedPaymentSource
impl Unpin for DeletedPaymentSource
impl UnwindSafe for DeletedPaymentSource
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