pub struct DontKnowTrade { /* private fields */ }
Implementations§
Source§impl DontKnowTrade
impl DontKnowTrade
pub const MSG_TYPE_BYTES: &'static str = "Q"
pub const MSG_TYPE: MsgType
pub fn header(&mut self) -> Header<'_>
pub fn header_mut(&mut self) -> HeaderMut<'_>
pub fn trailer(&mut self) -> Trailer<'_>
pub fn trailer_mut(&mut self) -> TrailerMut<'_>
Sourcepub fn to_fix_string(&self) -> String
pub fn to_fix_string(&self) -> String
Convert inner message as FIX text.
This method is only here for debug / tests purposes. Do not use this in real production code.
Source§impl DontKnowTrade
impl DontKnowTrade
pub fn try_new( dk_reason: DKReason, symbol: Symbol, side: Side, order_qty: OrderQty, last_shares: LastShares, last_px: LastPx, ) -> Result<Self, QuickFixError>
Source§impl DontKnowTrade
impl DontKnowTrade
pub fn get_order_id(&self) -> Option<OrderID>
pub fn get_exec_id(&self) -> Option<ExecID>
pub fn get_dk_reason(&self) -> DKReason
pub fn get_symbol(&self) -> Symbol
pub fn get_side(&self) -> Side
pub fn get_order_qty(&self) -> OrderQty
pub fn get_last_px(&self) -> LastPx
pub fn get_text(&self) -> Option<Text>
pub fn set_order_id(&mut self, value: OrderID) -> Result<&Self, QuickFixError>
pub fn remove_order_id(&mut self) -> Result<&Self, QuickFixError>
pub fn set_exec_id(&mut self, value: ExecID) -> Result<&Self, QuickFixError>
pub fn remove_exec_id(&mut self) -> Result<&Self, QuickFixError>
pub fn set_dk_reason(&mut self, value: DKReason) -> Result<&Self, QuickFixError>
pub fn set_symbol(&mut self, value: Symbol) -> Result<&Self, QuickFixError>
pub fn set_side(&mut self, value: Side) -> Result<&Self, QuickFixError>
pub fn set_order_qty(&mut self, value: OrderQty) -> Result<&Self, QuickFixError>
pub fn set_last_px(&mut self, value: LastPx) -> Result<&Self, QuickFixError>
pub fn set_text(&mut self, value: Text) -> Result<&Self, QuickFixError>
pub fn remove_text(&mut self) -> Result<&Self, QuickFixError>
Trait Implementations§
Source§impl Clone for DontKnowTrade
impl Clone for DontKnowTrade
Source§fn clone(&self) -> DontKnowTrade
fn clone(&self) -> DontKnowTrade
Returns a copy 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 DontKnowTrade
impl Debug for DontKnowTrade
Source§impl From<DontKnowTrade> for Message
impl From<DontKnowTrade> for Message
Source§fn from(input: DontKnowTrade) -> Self
fn from(input: DontKnowTrade) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DontKnowTrade
impl RefUnwindSafe for DontKnowTrade
impl !Send for DontKnowTrade
impl !Sync for DontKnowTrade
impl Unpin for DontKnowTrade
impl UnwindSafe for DontKnowTrade
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