Struct quickfix_msg40::ListCancelRequest
source · pub struct ListCancelRequest { /* private fields */ }
Implementations§
source§impl ListCancelRequest
impl ListCancelRequest
pub const MSG_TYPE_BYTES: &'static str = "K"
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 ListCancelRequest
impl ListCancelRequest
pub fn try_new(list_id: ListID) -> Result<Self, QuickFixError>
source§impl ListCancelRequest
impl ListCancelRequest
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 ListCancelRequest
impl Clone for ListCancelRequest
source§fn clone(&self) -> ListCancelRequest
fn clone(&self) -> ListCancelRequest
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 ListCancelRequest
impl Debug for ListCancelRequest
source§impl From<ListCancelRequest> for Message
impl From<ListCancelRequest> for Message
source§fn from(input: ListCancelRequest) -> Self
fn from(input: ListCancelRequest) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for ListCancelRequest
impl !Send for ListCancelRequest
impl !Sync for ListCancelRequest
impl Unpin for ListCancelRequest
impl UnwindSafe for ListCancelRequest
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