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