pub enum CustomerSourceDeleted {
BankAccount(BankAccount),
Card(Card),
Source(Source),
}
Variants§
Trait Implementations§
Source§impl Clone for CustomerSourceDeleted
impl Clone for CustomerSourceDeleted
Source§fn clone(&self) -> CustomerSourceDeleted
fn clone(&self) -> CustomerSourceDeleted
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 CustomerSourceDeleted
impl Debug for CustomerSourceDeleted
Source§impl Deserialize for CustomerSourceDeleted
impl Deserialize for CustomerSourceDeleted
Source§impl FromValueOpt for CustomerSourceDeleted
impl FromValueOpt for CustomerSourceDeleted
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for CustomerSourceDeleted
impl RefUnwindSafe for CustomerSourceDeleted
impl Send for CustomerSourceDeleted
impl Sync for CustomerSourceDeleted
impl Unpin for CustomerSourceDeleted
impl UnwindSafe for CustomerSourceDeleted
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