pub struct NoExecs { /* private fields */ }Implementations§
source§impl NoExecs
impl NoExecs
pub fn get_last_qty(&self) -> Option<LastQty>
pub fn get_exec_id(&self) -> Option<ExecID>
pub fn get_secondary_exec_id(&self) -> Option<SecondaryExecID>
pub fn get_last_px(&self) -> Option<LastPx>
pub fn get_last_par_px(&self) -> Option<LastParPx>
pub fn get_last_capacity(&self) -> Option<LastCapacity>
pub fn get_trade_id(&self) -> Option<TradeID>
pub fn get_firm_trade_id(&self) -> Option<FirmTradeID>
pub fn set_last_qty(&mut self, value: LastQty) -> Result<&Self, QuickFixError>
pub fn remove_last_qty(&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_secondary_exec_id( &mut self, value: SecondaryExecID ) -> Result<&Self, QuickFixError>
pub fn remove_secondary_exec_id(&mut self) -> Result<&Self, QuickFixError>
pub fn set_last_px(&mut self, value: LastPx) -> Result<&Self, QuickFixError>
pub fn remove_last_px(&mut self) -> Result<&Self, QuickFixError>
pub fn set_last_par_px( &mut self, value: LastParPx ) -> Result<&Self, QuickFixError>
pub fn remove_last_par_px(&mut self) -> Result<&Self, QuickFixError>
pub fn set_last_capacity( &mut self, value: LastCapacity ) -> Result<&Self, QuickFixError>
pub fn remove_last_capacity(&mut self) -> Result<&Self, QuickFixError>
pub fn set_trade_id(&mut self, value: TradeID) -> Result<&Self, QuickFixError>
pub fn remove_trade_id(&mut self) -> Result<&Self, QuickFixError>
pub fn set_firm_trade_id( &mut self, value: FirmTradeID ) -> Result<&Self, QuickFixError>
pub fn remove_firm_trade_id(&mut self) -> Result<&Self, QuickFixError>
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for NoExecs
impl !Send for NoExecs
impl !Sync for NoExecs
impl Unpin for NoExecs
impl UnwindSafe for NoExecs
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