pub struct InternalCashTransferInstruction {
pub amount: f64,
pub client_instruction_id: f64,
pub client_note: Option<String>,
pub currency: String,
pub date_time_to_occur: Option<DateTime<Utc>>,
pub source_account_id: String,
pub target_account_id: String,
}Fields§
§amount: f64- Example:
123.0
client_instruction_id: f64- Example:
1012983.0
client_note: Option<String>- Example:
Some("Note".to_string())
currency: String- Example:
"GBP".to_string()
date_time_to_occur: Option<DateTime<Utc>>§source_account_id: String- Example:
"U46377".to_string()
target_account_id: String- Example:
"U15667".to_string()
Trait Implementations§
Source§impl Clone for InternalCashTransferInstruction
impl Clone for InternalCashTransferInstruction
Source§fn clone(&self) -> InternalCashTransferInstruction
fn clone(&self) -> InternalCashTransferInstruction
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 PartialEq for InternalCashTransferInstruction
impl PartialEq for InternalCashTransferInstruction
Source§fn eq(&self, other: &InternalCashTransferInstruction) -> bool
fn eq(&self, other: &InternalCashTransferInstruction) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<'v_a> ValidateArgs<'v_a> for InternalCashTransferInstruction
impl<'v_a> ValidateArgs<'v_a> for InternalCashTransferInstruction
impl StructuralPartialEq for InternalCashTransferInstruction
Auto Trait Implementations§
impl Freeze for InternalCashTransferInstruction
impl RefUnwindSafe for InternalCashTransferInstruction
impl Send for InternalCashTransferInstruction
impl Sync for InternalCashTransferInstruction
impl Unpin for InternalCashTransferInstruction
impl UnsafeUnpin for InternalCashTransferInstruction
impl UnwindSafe for InternalCashTransferInstruction
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