pub struct BalanceAmountBySourceType {
pub bank_account: Option<i64>,
pub card: Option<i64>,
pub fpx: Option<i64>,
}Fields§
§bank_account: Option<i64>Amount coming from legacy US ACH payments.
card: Option<i64>Amount coming from most payment methods, including cards as well as non-legacy bank debits.
fpx: Option<i64>Amount coming from FPX, a Malaysian payment method.
Trait Implementations§
Source§impl Clone for BalanceAmountBySourceType
impl Clone for BalanceAmountBySourceType
Source§fn clone(&self) -> BalanceAmountBySourceType
fn clone(&self) -> BalanceAmountBySourceType
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 BalanceAmountBySourceType
impl Debug for BalanceAmountBySourceType
Source§impl FromValueOpt for BalanceAmountBySourceType
impl FromValueOpt for BalanceAmountBySourceType
fn from_value(v: Value) -> Option<Self>
impl Copy for BalanceAmountBySourceType
Auto Trait Implementations§
impl Freeze for BalanceAmountBySourceType
impl RefUnwindSafe for BalanceAmountBySourceType
impl Send for BalanceAmountBySourceType
impl Sync for BalanceAmountBySourceType
impl Unpin for BalanceAmountBySourceType
impl UnwindSafe for BalanceAmountBySourceType
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