pub struct ListStatusRequest { /* private fields */ }
Implementations§
Source§impl ListStatusRequest
impl ListStatusRequest
pub const MSG_TYPE_BYTES: &'static str = "M"
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 ListStatusRequest
impl ListStatusRequest
pub fn try_new(list_id: ListID) -> Result<Self, QuickFixError>
Source§impl ListStatusRequest
impl ListStatusRequest
pub fn get_list_id(&self) -> ListID
pub fn get_wave_no(&self) -> Option<WaveNo>
pub fn get_text(&self) -> Option<Text>
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_text(&mut self, value: Text) -> Result<&Self, QuickFixError>
pub fn remove_text(&mut self) -> Result<&Self, QuickFixError>
Trait Implementations§
Source§impl Clone for ListStatusRequest
impl Clone for ListStatusRequest
Source§fn clone(&self) -> ListStatusRequest
fn clone(&self) -> ListStatusRequest
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 ListStatusRequest
impl Debug for ListStatusRequest
Source§impl From<ListStatusRequest> for Message
impl From<ListStatusRequest> for Message
Source§fn from(input: ListStatusRequest) -> Self
fn from(input: ListStatusRequest) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ListStatusRequest
impl RefUnwindSafe for ListStatusRequest
impl !Send for ListStatusRequest
impl !Sync for ListStatusRequest
impl Unpin for ListStatusRequest
impl UnwindSafe for ListStatusRequest
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