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