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