pub struct NewOrderList { /* private fields */ }
Implementations§
Source§impl NewOrderList
impl NewOrderList
pub const MSG_TYPE_BYTES: &'static str = "E"
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 NewOrderList
impl NewOrderList
pub fn try_new( list_id: ListID, bid_type: BidType, tot_no_orders: TotNoOrders, ) -> Result<Self, QuickFixError>
Source§impl NewOrderList
impl NewOrderList
pub fn get_list_id(&self) -> ListID
pub fn get_bid_id(&self) -> Option<BidID>
pub fn get_client_bid_id(&self) -> Option<ClientBidID>
pub fn get_prog_rpt_reqs(&self) -> Option<ProgRptReqs>
pub fn get_bid_type(&self) -> BidType
pub fn get_prog_period_interval(&self) -> Option<ProgPeriodInterval>
pub fn get_cancellation_rights(&self) -> Option<CancellationRights>
pub fn get_money_laundering_status(&self) -> Option<MoneyLaunderingStatus>
pub fn get_regist_id(&self) -> Option<RegistID>
pub fn get_list_exec_inst_type(&self) -> Option<ListExecInstType>
pub fn get_list_exec_inst(&self) -> Option<ListExecInst>
pub fn get_encoded_list_exec_inst_len(&self) -> Option<EncodedListExecInstLen>
pub fn get_encoded_list_exec_inst(&self) -> Option<EncodedListExecInst>
pub fn get_tot_no_orders(&self) -> TotNoOrders
pub fn no_orders_len(&self) -> usize
pub fn clone_group_no_orders(&self, index: usize) -> Option<NoOrders>
pub fn iter_no_orders(&self) -> GroupIterator<'_, Self, NoOrders> ⓘ
pub fn set_list_id(&mut self, value: ListID) -> Result<&Self, QuickFixError>
pub fn set_bid_id(&mut self, value: BidID) -> Result<&Self, QuickFixError>
pub fn remove_bid_id(&mut self) -> Result<&Self, QuickFixError>
pub fn set_client_bid_id( &mut self, value: ClientBidID, ) -> Result<&Self, QuickFixError>
pub fn remove_client_bid_id(&mut self) -> Result<&Self, QuickFixError>
pub fn set_prog_rpt_reqs( &mut self, value: ProgRptReqs, ) -> Result<&Self, QuickFixError>
pub fn remove_prog_rpt_reqs(&mut self) -> Result<&Self, QuickFixError>
pub fn set_bid_type(&mut self, value: BidType) -> Result<&Self, QuickFixError>
pub fn set_prog_period_interval( &mut self, value: ProgPeriodInterval, ) -> Result<&Self, QuickFixError>
pub fn remove_prog_period_interval(&mut self) -> Result<&Self, QuickFixError>
pub fn set_cancellation_rights( &mut self, value: CancellationRights, ) -> Result<&Self, QuickFixError>
pub fn remove_cancellation_rights(&mut self) -> Result<&Self, QuickFixError>
pub fn set_money_laundering_status( &mut self, value: MoneyLaunderingStatus, ) -> Result<&Self, QuickFixError>
pub fn remove_money_laundering_status(&mut self) -> Result<&Self, QuickFixError>
pub fn set_regist_id(&mut self, value: RegistID) -> Result<&Self, QuickFixError>
pub fn remove_regist_id(&mut self) -> Result<&Self, QuickFixError>
pub fn set_list_exec_inst_type( &mut self, value: ListExecInstType, ) -> Result<&Self, QuickFixError>
pub fn remove_list_exec_inst_type(&mut self) -> Result<&Self, QuickFixError>
pub fn set_list_exec_inst( &mut self, value: ListExecInst, ) -> Result<&Self, QuickFixError>
pub fn remove_list_exec_inst(&mut self) -> Result<&Self, QuickFixError>
pub fn set_encoded_list_exec_inst_len( &mut self, value: EncodedListExecInstLen, ) -> Result<&Self, QuickFixError>
pub fn remove_encoded_list_exec_inst_len( &mut self, ) -> Result<&Self, QuickFixError>
pub fn set_encoded_list_exec_inst( &mut self, value: EncodedListExecInst, ) -> Result<&Self, QuickFixError>
pub fn remove_encoded_list_exec_inst(&mut self) -> Result<&Self, QuickFixError>
pub fn set_tot_no_orders( &mut self, value: TotNoOrders, ) -> Result<&Self, QuickFixError>
pub fn add_no_orders(&mut self, value: NoOrders) -> Result<&Self, QuickFixError>
Trait Implementations§
Source§impl Clone for NewOrderList
impl Clone for NewOrderList
Source§fn clone(&self) -> NewOrderList
fn clone(&self) -> NewOrderList
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 NewOrderList
impl Debug for NewOrderList
Source§impl From<Message> for NewOrderList
impl From<Message> for NewOrderList
Source§impl From<NewOrderList> for Message
impl From<NewOrderList> for Message
Source§fn from(input: NewOrderList) -> Self
fn from(input: NewOrderList) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for NewOrderList
impl RefUnwindSafe for NewOrderList
impl !Send for NewOrderList
impl !Sync for NewOrderList
impl Unpin for NewOrderList
impl UnwindSafe for NewOrderList
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