pub struct QuoteAcknowledgement { /* private fields */ }
Implementations§
Source§impl QuoteAcknowledgement
impl QuoteAcknowledgement
pub const MSG_TYPE_BYTES: &'static str = "b"
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 QuoteAcknowledgement
impl QuoteAcknowledgement
pub fn try_new(quote_ack_status: QuoteAckStatus) -> Result<Self, QuickFixError>
Source§impl QuoteAcknowledgement
impl QuoteAcknowledgement
pub fn get_quote_req_id(&self) -> Option<QuoteReqID>
pub fn get_quote_id(&self) -> Option<QuoteID>
pub fn get_quote_ack_status(&self) -> QuoteAckStatus
pub fn get_quote_reject_reason(&self) -> Option<QuoteRejectReason>
pub fn get_quote_response_level(&self) -> Option<QuoteResponseLevel>
pub fn get_trading_session_id(&self) -> Option<TradingSessionID>
pub fn get_text(&self) -> Option<Text>
pub fn no_quote_sets_len(&self) -> usize
pub fn clone_group_no_quote_sets(&self, index: usize) -> Option<NoQuoteSets>
pub fn iter_no_quote_sets(&self) -> GroupIterator<'_, Self, NoQuoteSets> ⓘ
pub fn set_quote_req_id( &mut self, value: QuoteReqID, ) -> Result<&Self, QuickFixError>
pub fn remove_quote_req_id(&mut self) -> Result<&Self, QuickFixError>
pub fn set_quote_id(&mut self, value: QuoteID) -> Result<&Self, QuickFixError>
pub fn remove_quote_id(&mut self) -> Result<&Self, QuickFixError>
pub fn set_quote_ack_status( &mut self, value: QuoteAckStatus, ) -> Result<&Self, QuickFixError>
pub fn set_quote_reject_reason( &mut self, value: QuoteRejectReason, ) -> Result<&Self, QuickFixError>
pub fn remove_quote_reject_reason(&mut self) -> Result<&Self, QuickFixError>
pub fn set_quote_response_level( &mut self, value: QuoteResponseLevel, ) -> Result<&Self, QuickFixError>
pub fn remove_quote_response_level(&mut self) -> Result<&Self, QuickFixError>
pub fn set_trading_session_id( &mut self, value: TradingSessionID, ) -> Result<&Self, QuickFixError>
pub fn remove_trading_session_id(&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 add_no_quote_sets( &mut self, value: NoQuoteSets, ) -> Result<&Self, QuickFixError>
Trait Implementations§
Source§impl Clone for QuoteAcknowledgement
impl Clone for QuoteAcknowledgement
Source§fn clone(&self) -> QuoteAcknowledgement
fn clone(&self) -> QuoteAcknowledgement
Returns a duplicate 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 QuoteAcknowledgement
impl Debug for QuoteAcknowledgement
Source§impl From<Message> for QuoteAcknowledgement
impl From<Message> for QuoteAcknowledgement
Source§impl From<QuoteAcknowledgement> for Message
impl From<QuoteAcknowledgement> for Message
Source§fn from(input: QuoteAcknowledgement) -> Self
fn from(input: QuoteAcknowledgement) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for QuoteAcknowledgement
impl RefUnwindSafe for QuoteAcknowledgement
impl !Send for QuoteAcknowledgement
impl !Sync for QuoteAcknowledgement
impl Unpin for QuoteAcknowledgement
impl UnwindSafe for QuoteAcknowledgement
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