pub struct MoneyTransfer {
pub subtype: MoneyTransferSubtype,
pub external_id: String,
pub ledger_insertion_id: String,
pub move_money_transfer_id: String,
pub pot_account_id: String,
pub pot_id: String,
pub transaction_description_localised: String,
pub transaction_locale_country: String,
pub trigger: String,
pub user_id: String,
}Expand description
A move of money between pots or accounts
Fields§
§subtype: MoneyTransferSubtype§external_id: String§ledger_insertion_id: String§move_money_transfer_id: String§pot_account_id: String§pot_id: String§transaction_description_localised: String§transaction_locale_country: String§trigger: String§user_id: StringTrait Implementations§
Source§impl Clone for MoneyTransfer
impl Clone for MoneyTransfer
Source§fn clone(&self) -> MoneyTransfer
fn clone(&self) -> MoneyTransfer
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 MoneyTransfer
impl Debug for MoneyTransfer
Source§impl<'de> Deserialize<'de> for MoneyTransfer
impl<'de> Deserialize<'de> for MoneyTransfer
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 MoneyTransfer
impl RefUnwindSafe for MoneyTransfer
impl Send for MoneyTransfer
impl Sync for MoneyTransfer
impl Unpin for MoneyTransfer
impl UnwindSafe for MoneyTransfer
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