pub struct BalanceAmountNet {
pub amount: i64,
pub currency: Currency,
pub net_available: Option<Vec<BalanceNetAvailable>>,
pub source_types: Option<BalanceAmountBySourceType>,
}
Fields§
§amount: i64
Balance amount.
currency: Currency
Three-letter ISO currency code, in lowercase. Must be a supported currency.
net_available: Option<Vec<BalanceNetAvailable>>
Breakdown of balance by destination.
source_types: Option<BalanceAmountBySourceType>
Trait Implementations§
Source§impl Clone for BalanceAmountNet
impl Clone for BalanceAmountNet
Source§fn clone(&self) -> BalanceAmountNet
fn clone(&self) -> BalanceAmountNet
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 BalanceAmountNet
impl Debug for BalanceAmountNet
Source§impl Deserialize for BalanceAmountNet
impl Deserialize for BalanceAmountNet
Source§impl FromValueOpt for BalanceAmountNet
impl FromValueOpt for BalanceAmountNet
fn from_value(v: Value) -> Option<Self>
Source§impl ObjectDeser for BalanceAmountNet
impl ObjectDeser for BalanceAmountNet
Auto Trait Implementations§
impl Freeze for BalanceAmountNet
impl RefUnwindSafe for BalanceAmountNet
impl Send for BalanceAmountNet
impl Sync for BalanceAmountNet
impl Unpin for BalanceAmountNet
impl UnwindSafe for BalanceAmountNet
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