pub struct TreasuryTransactionsResourceBalanceImpact {
pub cash: i64,
pub inbound_pending: i64,
pub outbound_pending: i64,
}Expand description
Change to a FinancialAccount’s balance
Fields§
§cash: i64The change made to funds the user can spend right now.
inbound_pending: i64The change made to funds that are not spendable yet, but will become available at a later time.
outbound_pending: i64The change made to funds in the account, but not spendable because they are being held for pending outbound flows.
Trait Implementations§
Source§impl Clone for TreasuryTransactionsResourceBalanceImpact
impl Clone for TreasuryTransactionsResourceBalanceImpact
Source§fn clone(&self) -> TreasuryTransactionsResourceBalanceImpact
fn clone(&self) -> TreasuryTransactionsResourceBalanceImpact
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 Default for TreasuryTransactionsResourceBalanceImpact
impl Default for TreasuryTransactionsResourceBalanceImpact
Source§fn default() -> TreasuryTransactionsResourceBalanceImpact
fn default() -> TreasuryTransactionsResourceBalanceImpact
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TreasuryTransactionsResourceBalanceImpact
impl<'de> Deserialize<'de> for TreasuryTransactionsResourceBalanceImpact
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for TreasuryTransactionsResourceBalanceImpact
impl RefUnwindSafe for TreasuryTransactionsResourceBalanceImpact
impl Send for TreasuryTransactionsResourceBalanceImpact
impl Sync for TreasuryTransactionsResourceBalanceImpact
impl Unpin for TreasuryTransactionsResourceBalanceImpact
impl UnwindSafe for TreasuryTransactionsResourceBalanceImpact
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