pub struct ReserveTransaction {
pub amount: i64,
pub currency: Currency,
pub description: Option<String>,
pub id: ReserveTransactionId,
}
Fields§
§amount: i64
§currency: Currency
Three-letter ISO currency code, in lowercase. Must be a supported currency.
description: Option<String>
An arbitrary string attached to the object. Often useful for displaying to users.
id: ReserveTransactionId
Unique identifier for the object.
Trait Implementations§
Source§impl Clone for ReserveTransaction
impl Clone for ReserveTransaction
Source§fn clone(&self) -> ReserveTransaction
fn clone(&self) -> ReserveTransaction
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 ReserveTransaction
impl Debug for ReserveTransaction
Source§impl Deserialize for ReserveTransaction
impl Deserialize for ReserveTransaction
Source§impl Object for ReserveTransaction
impl Object for ReserveTransaction
Source§impl ObjectDeser for ReserveTransaction
impl ObjectDeser for ReserveTransaction
Auto Trait Implementations§
impl Freeze for ReserveTransaction
impl RefUnwindSafe for ReserveTransaction
impl Send for ReserveTransaction
impl Sync for ReserveTransaction
impl Unpin for ReserveTransaction
impl UnwindSafe for ReserveTransaction
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