pub struct ComplexAssetTransferInstruction {
pub account_id: String,
pub account_id_at_current_broker: Option<String>,
pub client_instruction_id: f64,
pub contra_broker_info: ContraBrokerInfo,
pub direction: InstructionDirection,
pub non_disclosed_detail: Option<NonDisclosedDetail>,
pub quantity: f64,
pub trading_instrument: TradingInstrument,
}Fields§
§account_id: String- Example:
"U46377".to_string()
account_id_at_current_broker: Option<String>- Example:
Some("7NXXXX0".to_string())
client_instruction_id: f64- Example:
1012983.0
contra_broker_info: ContraBrokerInfo§direction: InstructionDirection- Example:
"IN"
non_disclosed_detail: Option<NonDisclosedDetail>§quantity: f64- Example:
1000.0
trading_instrument: TradingInstrumentTrait Implementations§
Source§impl Clone for ComplexAssetTransferInstruction
impl Clone for ComplexAssetTransferInstruction
Source§fn clone(&self) -> ComplexAssetTransferInstruction
fn clone(&self) -> ComplexAssetTransferInstruction
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 ComplexAssetTransferInstruction
impl PartialEq for ComplexAssetTransferInstruction
Source§fn eq(&self, other: &ComplexAssetTransferInstruction) -> bool
fn eq(&self, other: &ComplexAssetTransferInstruction) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<'v_a> ValidateArgs<'v_a> for ComplexAssetTransferInstruction
impl<'v_a> ValidateArgs<'v_a> for ComplexAssetTransferInstruction
impl StructuralPartialEq for ComplexAssetTransferInstruction
Auto Trait Implementations§
impl Freeze for ComplexAssetTransferInstruction
impl RefUnwindSafe for ComplexAssetTransferInstruction
impl Send for ComplexAssetTransferInstruction
impl Sync for ComplexAssetTransferInstruction
impl Unpin for ComplexAssetTransferInstruction
impl UnsafeUnpin for ComplexAssetTransferInstruction
impl UnwindSafe for ComplexAssetTransferInstruction
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