pub struct SequenceReset { /* private fields */ }
Implementations§
Source§impl SequenceReset
impl SequenceReset
pub const MSG_TYPE_BYTES: &'static str = "4"
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 SequenceReset
impl SequenceReset
pub fn try_new(new_seq_no: NewSeqNo) -> Result<Self, QuickFixError>
Source§impl SequenceReset
impl SequenceReset
pub fn get_gap_fill_flag(&self) -> Option<GapFillFlag>
pub fn get_new_seq_no(&self) -> NewSeqNo
pub fn set_gap_fill_flag( &mut self, value: GapFillFlag, ) -> Result<&Self, QuickFixError>
pub fn remove_gap_fill_flag(&mut self) -> Result<&Self, QuickFixError>
pub fn set_new_seq_no( &mut self, value: NewSeqNo, ) -> Result<&Self, QuickFixError>
Trait Implementations§
Source§impl Clone for SequenceReset
impl Clone for SequenceReset
Source§fn clone(&self) -> SequenceReset
fn clone(&self) -> SequenceReset
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 SequenceReset
impl Debug for SequenceReset
Source§impl From<Message> for SequenceReset
impl From<Message> for SequenceReset
Source§impl From<SequenceReset> for Message
impl From<SequenceReset> for Message
Source§fn from(input: SequenceReset) -> Self
fn from(input: SequenceReset) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SequenceReset
impl RefUnwindSafe for SequenceReset
impl !Send for SequenceReset
impl !Sync for SequenceReset
impl Unpin for SequenceReset
impl UnwindSafe for SequenceReset
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