pub struct MoneyTransactionAnchorInput {
pub account_id: String,
pub amount: Decimal,
pub direction: TransactionDirection,
}Expand description
Anchor account input for a money transaction.
Fields§
§account_id: String§amount: Decimal§direction: TransactionDirectionTrait Implementations§
Source§impl Clone for MoneyTransactionAnchorInput
impl Clone for MoneyTransactionAnchorInput
Source§fn clone(&self) -> MoneyTransactionAnchorInput
fn clone(&self) -> MoneyTransactionAnchorInput
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 MoneyTransactionAnchorInput
impl Debug for MoneyTransactionAnchorInput
Auto Trait Implementations§
impl Freeze for MoneyTransactionAnchorInput
impl RefUnwindSafe for MoneyTransactionAnchorInput
impl Send for MoneyTransactionAnchorInput
impl Sync for MoneyTransactionAnchorInput
impl Unpin for MoneyTransactionAnchorInput
impl UnsafeUnpin for MoneyTransactionAnchorInput
impl UnwindSafe for MoneyTransactionAnchorInput
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