pub struct MarketDataRequest { /* private fields */ }
Implementations§
Source§impl MarketDataRequest
impl MarketDataRequest
pub const MSG_TYPE_BYTES: &'static str = "V"
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 MarketDataRequest
impl MarketDataRequest
pub fn try_new( md_req_id: MDReqID, subscription_request_type: SubscriptionRequestType, market_depth: MarketDepth, ) -> Result<Self, QuickFixError>
Source§impl MarketDataRequest
impl MarketDataRequest
pub fn get_md_req_id(&self) -> MDReqID
pub fn get_subscription_request_type(&self) -> SubscriptionRequestType
pub fn get_market_depth(&self) -> MarketDepth
pub fn get_md_update_type(&self) -> Option<MDUpdateType>
pub fn get_aggregated_book(&self) -> Option<AggregatedBook>
pub fn get_open_close_settl_flag(&self) -> Option<OpenCloseSettlFlag>
pub fn get_scope(&self) -> Option<Scope>
pub fn get_md_implicit_delete(&self) -> Option<MDImplicitDelete>
pub fn no_md_entry_types_len(&self) -> usize
pub fn clone_group_no_md_entry_types( &self, index: usize, ) -> Option<NoMDEntryTypes>
pub fn iter_no_md_entry_types(&self) -> GroupIterator<'_, Self, NoMDEntryTypes> ⓘ
pub fn no_trading_sessions_len(&self) -> usize
pub fn clone_group_no_trading_sessions( &self, index: usize, ) -> Option<NoTradingSessions>
pub fn iter_no_trading_sessions( &self, ) -> GroupIterator<'_, Self, NoTradingSessions> ⓘ
pub fn get_appl_queue_action(&self) -> Option<ApplQueueAction>
pub fn get_appl_queue_max(&self) -> Option<ApplQueueMax>
pub fn set_md_req_id(&mut self, value: MDReqID) -> Result<&Self, QuickFixError>
pub fn set_subscription_request_type( &mut self, value: SubscriptionRequestType, ) -> Result<&Self, QuickFixError>
pub fn set_market_depth( &mut self, value: MarketDepth, ) -> Result<&Self, QuickFixError>
pub fn set_md_update_type( &mut self, value: MDUpdateType, ) -> Result<&Self, QuickFixError>
pub fn remove_md_update_type(&mut self) -> Result<&Self, QuickFixError>
pub fn set_aggregated_book( &mut self, value: AggregatedBook, ) -> Result<&Self, QuickFixError>
pub fn remove_aggregated_book(&mut self) -> Result<&Self, QuickFixError>
pub fn set_open_close_settl_flag( &mut self, value: OpenCloseSettlFlag, ) -> Result<&Self, QuickFixError>
pub fn remove_open_close_settl_flag(&mut self) -> Result<&Self, QuickFixError>
pub fn set_scope(&mut self, value: Scope) -> Result<&Self, QuickFixError>
pub fn remove_scope(&mut self) -> Result<&Self, QuickFixError>
pub fn set_md_implicit_delete( &mut self, value: MDImplicitDelete, ) -> Result<&Self, QuickFixError>
pub fn remove_md_implicit_delete(&mut self) -> Result<&Self, QuickFixError>
pub fn add_no_md_entry_types( &mut self, value: NoMDEntryTypes, ) -> Result<&Self, QuickFixError>
pub fn add_no_trading_sessions( &mut self, value: NoTradingSessions, ) -> Result<&Self, QuickFixError>
pub fn set_appl_queue_action( &mut self, value: ApplQueueAction, ) -> Result<&Self, QuickFixError>
pub fn remove_appl_queue_action(&mut self) -> Result<&Self, QuickFixError>
pub fn set_appl_queue_max( &mut self, value: ApplQueueMax, ) -> Result<&Self, QuickFixError>
pub fn remove_appl_queue_max(&mut self) -> Result<&Self, QuickFixError>
Trait Implementations§
Source§impl Clone for MarketDataRequest
impl Clone for MarketDataRequest
Source§fn clone(&self) -> MarketDataRequest
fn clone(&self) -> MarketDataRequest
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 MarketDataRequest
impl Debug for MarketDataRequest
Source§impl From<MarketDataRequest> for Message
impl From<MarketDataRequest> for Message
Source§fn from(input: MarketDataRequest) -> Self
fn from(input: MarketDataRequest) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MarketDataRequest
impl RefUnwindSafe for MarketDataRequest
impl !Send for MarketDataRequest
impl !Sync for MarketDataRequest
impl Unpin for MarketDataRequest
impl UnwindSafe for MarketDataRequest
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