pub struct ListStatus { /* private fields */ }
Implementations§
Source§impl ListStatus
impl ListStatus
pub const MSG_TYPE_BYTES: &'static str = "N"
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 ListStatus
impl ListStatus
pub fn try_new( list_id: ListID, list_status_type: ListStatusType, no_rpts: NoRpts, list_order_status: ListOrderStatus, rpt_seq: RptSeq, tot_no_orders: TotNoOrders, ) -> Result<Self, QuickFixError>
Source§impl ListStatus
impl ListStatus
pub fn get_list_id(&self) -> ListID
pub fn get_list_status_type(&self) -> ListStatusType
pub fn get_no_rpts(&self) -> NoRpts
pub fn get_list_order_status(&self) -> ListOrderStatus
pub fn get_rpt_seq(&self) -> RptSeq
pub fn get_list_status_text(&self) -> Option<ListStatusText>
pub fn get_encoded_list_status_text_len( &self, ) -> Option<EncodedListStatusTextLen>
pub fn get_encoded_list_status_text(&self) -> Option<EncodedListStatusText>
pub fn get_transact_time(&self) -> Option<TransactTime>
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_list_status_type( &mut self, value: ListStatusType, ) -> Result<&Self, QuickFixError>
pub fn set_no_rpts(&mut self, value: NoRpts) -> Result<&Self, QuickFixError>
pub fn set_list_order_status( &mut self, value: ListOrderStatus, ) -> Result<&Self, QuickFixError>
pub fn set_rpt_seq(&mut self, value: RptSeq) -> Result<&Self, QuickFixError>
pub fn set_list_status_text( &mut self, value: ListStatusText, ) -> Result<&Self, QuickFixError>
pub fn remove_list_status_text(&mut self) -> Result<&Self, QuickFixError>
pub fn set_encoded_list_status_text_len( &mut self, value: EncodedListStatusTextLen, ) -> Result<&Self, QuickFixError>
pub fn remove_encoded_list_status_text_len( &mut self, ) -> Result<&Self, QuickFixError>
pub fn set_encoded_list_status_text( &mut self, value: EncodedListStatusText, ) -> Result<&Self, QuickFixError>
pub fn remove_encoded_list_status_text( &mut self, ) -> Result<&Self, QuickFixError>
pub fn set_transact_time( &mut self, value: TransactTime, ) -> Result<&Self, QuickFixError>
pub fn remove_transact_time(&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 ListStatus
impl Clone for ListStatus
Source§fn clone(&self) -> ListStatus
fn clone(&self) -> ListStatus
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 ListStatus
impl Debug for ListStatus
Source§impl From<ListStatus> for Message
impl From<ListStatus> for Message
Source§fn from(input: ListStatus) -> Self
fn from(input: ListStatus) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ListStatus
impl RefUnwindSafe for ListStatus
impl !Send for ListStatus
impl !Sync for ListStatus
impl Unpin for ListStatus
impl UnwindSafe for ListStatus
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