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
Source§impl ListStatus
impl ListStatus
pub fn get_list_id(&self) -> ListID
pub fn get_wave_no(&self) -> Option<WaveNo>
pub fn get_no_rpts(&self) -> NoRpts
pub fn get_rpt_seq(&self) -> RptSeq
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_wave_no(&mut self, value: WaveNo) -> Result<&Self, QuickFixError>
pub fn remove_wave_no(&mut self) -> Result<&Self, QuickFixError>
pub fn set_no_rpts(&mut self, value: NoRpts) -> Result<&Self, QuickFixError>
pub fn set_rpt_seq(&mut self, value: RptSeq) -> 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