Struct quickfix_msg42::Reject
source · pub struct Reject { /* private fields */ }
Implementations§
source§impl Reject
impl Reject
pub const MSG_TYPE_BYTES: &'static str = "3"
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 Reject
impl Reject
pub fn get_ref_seq_num(&self) -> RefSeqNum
pub fn get_ref_tag_id(&self) -> Option<RefTagID>
pub fn get_ref_msg_type(&self) -> Option<RefMsgType>
pub fn get_session_reject_reason(&self) -> Option<SessionRejectReason>
pub fn get_text(&self) -> Option<Text>
pub fn get_encoded_text_len(&self) -> Option<EncodedTextLen>
pub fn get_encoded_text(&self) -> Option<EncodedText>
pub fn set_ref_seq_num( &mut self, value: RefSeqNum ) -> Result<&Self, QuickFixError>
pub fn set_ref_tag_id( &mut self, value: RefTagID ) -> Result<&Self, QuickFixError>
pub fn remove_ref_tag_id(&mut self) -> Result<&Self, QuickFixError>
pub fn set_ref_msg_type( &mut self, value: RefMsgType ) -> Result<&Self, QuickFixError>
pub fn remove_ref_msg_type(&mut self) -> Result<&Self, QuickFixError>
pub fn set_session_reject_reason( &mut self, value: SessionRejectReason ) -> Result<&Self, QuickFixError>
pub fn remove_session_reject_reason(&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>
pub fn set_encoded_text_len( &mut self, value: EncodedTextLen ) -> Result<&Self, QuickFixError>
pub fn remove_encoded_text_len(&mut self) -> Result<&Self, QuickFixError>
pub fn set_encoded_text( &mut self, value: EncodedText ) -> Result<&Self, QuickFixError>
pub fn remove_encoded_text(&mut self) -> Result<&Self, QuickFixError>
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Reject
impl !Send for Reject
impl !Sync for Reject
impl Unpin for Reject
impl UnwindSafe for Reject
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