pub struct NoOrders { /* private fields */ }
Implementations§
Source§impl NoOrders
impl NoOrders
pub fn get_cl_ord_id(&self) -> ClOrdID
pub fn get_secondary_cl_ord_id(&self) -> Option<SecondaryClOrdID>
pub fn get_cum_qty(&self) -> CumQty
pub fn get_ord_status(&self) -> OrdStatus
pub fn get_working_indicator(&self) -> Option<WorkingIndicator>
pub fn get_leaves_qty(&self) -> LeavesQty
pub fn get_cxl_qty(&self) -> CxlQty
pub fn get_avg_px(&self) -> AvgPx
pub fn get_ord_rej_reason(&self) -> Option<OrdRejReason>
pub fn get_text(&self) -> Option<Text>
pub fn get_encoded_text_len(&self) -> Option<EncodedTextLen>
pub fn get_encoded_text(&self) -> Option<EncodedText>
pub fn set_cl_ord_id(&mut self, value: ClOrdID) -> Result<&Self, QuickFixError>
pub fn set_secondary_cl_ord_id( &mut self, value: SecondaryClOrdID, ) -> Result<&Self, QuickFixError>
pub fn remove_secondary_cl_ord_id(&mut self) -> Result<&Self, QuickFixError>
pub fn set_cum_qty(&mut self, value: CumQty) -> Result<&Self, QuickFixError>
pub fn set_ord_status( &mut self, value: OrdStatus, ) -> Result<&Self, QuickFixError>
pub fn set_working_indicator( &mut self, value: WorkingIndicator, ) -> Result<&Self, QuickFixError>
pub fn remove_working_indicator(&mut self) -> Result<&Self, QuickFixError>
pub fn set_leaves_qty( &mut self, value: LeavesQty, ) -> Result<&Self, QuickFixError>
pub fn set_cxl_qty(&mut self, value: CxlQty) -> Result<&Self, QuickFixError>
pub fn set_avg_px(&mut self, value: AvgPx) -> Result<&Self, QuickFixError>
pub fn set_ord_rej_reason( &mut self, value: OrdRejReason, ) -> Result<&Self, QuickFixError>
pub fn remove_ord_rej_reason(&mut self) -> Result<&Self, QuickFixError>
pub fn set_text(&mut self, value: Text) -> Result<&Self, QuickFixError>
pub fn remove_text(&mut self) -> Result<&Self, QuickFixError>
pub fn set_encoded_text_len( &mut self, value: EncodedTextLen, ) -> Result<&Self, QuickFixError>
pub fn remove_encoded_text_len(&mut self) -> Result<&Self, QuickFixError>
pub fn set_encoded_text( &mut self, value: EncodedText, ) -> Result<&Self, QuickFixError>
pub fn remove_encoded_text(&mut self) -> Result<&Self, QuickFixError>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NoOrders
impl RefUnwindSafe for NoOrders
impl !Send for NoOrders
impl !Sync for NoOrders
impl Unpin for NoOrders
impl UnwindSafe for NoOrders
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