pub struct NoOrders { /* private fields */ }
Implementations§
Source§impl NoOrders
impl NoOrders
pub fn get_cl_ord_id(&self) -> Option<ClOrdID>
pub fn get_order_id(&self) -> Option<OrderID>
pub fn get_secondary_order_id(&self) -> Option<SecondaryOrderID>
pub fn get_secondary_cl_ord_id(&self) -> Option<SecondaryClOrdID>
pub fn get_list_id(&self) -> Option<ListID>
pub fn no_nested_2_party_i_ds_len(&self) -> usize
pub fn clone_group_no_nested_2_party_i_ds( &self, index: usize, ) -> Option<NoNested2PartyIDs>
pub fn iter_no_nested_2_party_i_ds( &self, ) -> GroupIterator<'_, Self, NoNested2PartyIDs> ⓘ
pub fn get_order_qty(&self) -> Option<OrderQty>
pub fn get_order_avg_px(&self) -> Option<OrderAvgPx>
pub fn get_order_booking_qty(&self) -> Option<OrderBookingQty>
pub fn set_cl_ord_id(&mut self, value: ClOrdID) -> Result<&Self, QuickFixError>
pub fn remove_cl_ord_id(&mut self) -> Result<&Self, QuickFixError>
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_secondary_order_id( &mut self, value: SecondaryOrderID, ) -> Result<&Self, QuickFixError>
pub fn remove_secondary_order_id(&mut self) -> 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_list_id(&mut self, value: ListID) -> Result<&Self, QuickFixError>
pub fn remove_list_id(&mut self) -> Result<&Self, QuickFixError>
pub fn add_no_nested_2_party_i_ds( &mut self, value: NoNested2PartyIDs, ) -> Result<&Self, QuickFixError>
pub fn set_order_qty(&mut self, value: OrderQty) -> Result<&Self, QuickFixError>
pub fn remove_order_qty(&mut self) -> Result<&Self, QuickFixError>
pub fn set_order_avg_px( &mut self, value: OrderAvgPx, ) -> Result<&Self, QuickFixError>
pub fn remove_order_avg_px(&mut self) -> Result<&Self, QuickFixError>
pub fn set_order_booking_qty( &mut self, value: OrderBookingQty, ) -> Result<&Self, QuickFixError>
pub fn remove_order_booking_qty(&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