Struct quickfix_msg44::MassQuote
source · pub struct MassQuote { /* private fields */ }
Implementations§
source§impl MassQuote
impl MassQuote
pub const MSG_TYPE_BYTES: &'static str = "i"
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 MassQuote
impl MassQuote
pub fn get_quote_req_id(&self) -> Option<QuoteReqID>
pub fn get_quote_id(&self) -> QuoteID
pub fn get_quote_type(&self) -> Option<QuoteType>
pub fn get_quote_response_level(&self) -> Option<QuoteResponseLevel>
pub fn clone_group_no_party_i_ds(&self, index: usize) -> Option<NoPartyIDs>
pub fn get_account(&self) -> Option<Account>
pub fn get_acct_id_source(&self) -> Option<AcctIDSource>
pub fn get_account_type(&self) -> Option<AccountType>
pub fn get_def_bid_size(&self) -> Option<DefBidSize>
pub fn get_def_offer_size(&self) -> Option<DefOfferSize>
pub fn clone_group_no_quote_sets(&self, index: usize) -> Option<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 set_quote_type( &mut self, value: QuoteType ) -> Result<&Self, QuickFixError>
pub fn remove_quote_type(&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 add_no_party_i_ds( &mut self, value: NoPartyIDs ) -> Result<&Self, QuickFixError>
pub fn set_account(&mut self, value: Account) -> Result<&Self, QuickFixError>
pub fn remove_account(&mut self) -> Result<&Self, QuickFixError>
pub fn set_acct_id_source( &mut self, value: AcctIDSource ) -> Result<&Self, QuickFixError>
pub fn remove_acct_id_source(&mut self) -> Result<&Self, QuickFixError>
pub fn set_account_type( &mut self, value: AccountType ) -> Result<&Self, QuickFixError>
pub fn remove_account_type(&mut self) -> Result<&Self, QuickFixError>
pub fn set_def_bid_size( &mut self, value: DefBidSize ) -> Result<&Self, QuickFixError>
pub fn remove_def_bid_size(&mut self) -> Result<&Self, QuickFixError>
pub fn set_def_offer_size( &mut self, value: DefOfferSize ) -> Result<&Self, QuickFixError>
pub fn remove_def_offer_size(&mut self) -> Result<&Self, QuickFixError>
pub fn add_no_quote_sets( &mut self, value: NoQuoteSets ) -> Result<&Self, QuickFixError>
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for MassQuote
impl !Send for MassQuote
impl !Sync for MassQuote
impl Unpin for MassQuote
impl UnwindSafe for MassQuote
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