pub struct DeletedBankAccount {
pub currency: Option<Currency>,
pub id: BankAccountId,
/* private fields */
}
Fields§
§currency: Option<Currency>
Three-letter ISO code for the currency paid out to the bank account.
id: BankAccountId
Unique identifier for the object.
Trait Implementations§
Source§impl Clone for DeletedBankAccount
impl Clone for DeletedBankAccount
Source§fn clone(&self) -> DeletedBankAccount
fn clone(&self) -> DeletedBankAccount
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 DeletedBankAccount
impl Debug for DeletedBankAccount
Source§impl Deserialize for DeletedBankAccount
impl Deserialize for DeletedBankAccount
Source§impl FromValueOpt for DeletedBankAccount
impl FromValueOpt for DeletedBankAccount
fn from_value(v: Value) -> Option<Self>
Source§impl Object for DeletedBankAccount
impl Object for DeletedBankAccount
Auto Trait Implementations§
impl Freeze for DeletedBankAccount
impl RefUnwindSafe for DeletedBankAccount
impl Send for DeletedBankAccount
impl Sync for DeletedBankAccount
impl Unpin for DeletedBankAccount
impl UnwindSafe for DeletedBankAccount
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