pub struct FopInstruction {
pub account_id: String,
pub client_instruction_id: f64,
pub contra_broker_account_id: String,
pub contra_broker_dtc_code: String,
pub direction: InstructionDirection,
pub quantity: f64,
pub trading_instrument: TradingInstrument,
}Fields§
§account_id: String- Example:
"U46377".to_string()
client_instruction_id: f64- Example:
1012983.0
contra_broker_account_id: String- Example:
"12345678A".to_string()
contra_broker_dtc_code: String- Example:
"534".to_string()
direction: InstructionDirection- Example:
"IN"
quantity: f64- Example:
1000.0
trading_instrument: TradingInstrumentTrait Implementations§
Source§impl Clone for FopInstruction
impl Clone for FopInstruction
Source§fn clone(&self) -> FopInstruction
fn clone(&self) -> FopInstruction
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 FopInstruction
impl Debug for FopInstruction
Source§impl Default for FopInstruction
impl Default for FopInstruction
Source§impl PartialEq for FopInstruction
impl PartialEq for FopInstruction
Source§impl Serialize for FopInstruction
impl Serialize for FopInstruction
Source§impl Validate for FopInstruction
impl Validate for FopInstruction
Source§impl<'v_a> ValidateArgs<'v_a> for FopInstruction
impl<'v_a> ValidateArgs<'v_a> for FopInstruction
impl StructuralPartialEq for FopInstruction
Auto Trait Implementations§
impl Freeze for FopInstruction
impl RefUnwindSafe for FopInstruction
impl Send for FopInstruction
impl Sync for FopInstruction
impl Unpin for FopInstruction
impl UnsafeUnpin for FopInstruction
impl UnwindSafe for FopInstruction
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