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