pub struct TradingSessionListRequest { /* private fields */ }
Implementations§
Source§impl TradingSessionListRequest
impl TradingSessionListRequest
pub const MSG_TYPE_BYTES: &'static str = "BI"
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 TradingSessionListRequest
impl TradingSessionListRequest
pub fn try_new( trad_ses_req_id: TradSesReqID, subscription_request_type: SubscriptionRequestType, ) -> Result<Self, QuickFixError>
Source§impl TradingSessionListRequest
impl TradingSessionListRequest
pub fn get_trad_ses_req_id(&self) -> TradSesReqID
pub fn get_trading_session_id(&self) -> Option<TradingSessionID>
pub fn get_trading_session_sub_id(&self) -> Option<TradingSessionSubID>
pub fn get_security_exchange(&self) -> Option<SecurityExchange>
pub fn get_trad_ses_method(&self) -> Option<TradSesMethod>
pub fn get_trad_ses_mode(&self) -> Option<TradSesMode>
pub fn get_subscription_request_type(&self) -> SubscriptionRequestType
pub fn set_trad_ses_req_id( &mut self, value: TradSesReqID, ) -> 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_trading_session_sub_id( &mut self, value: TradingSessionSubID, ) -> Result<&Self, QuickFixError>
pub fn remove_trading_session_sub_id(&mut self) -> Result<&Self, QuickFixError>
pub fn set_security_exchange( &mut self, value: SecurityExchange, ) -> Result<&Self, QuickFixError>
pub fn remove_security_exchange(&mut self) -> Result<&Self, QuickFixError>
pub fn set_trad_ses_method( &mut self, value: TradSesMethod, ) -> Result<&Self, QuickFixError>
pub fn remove_trad_ses_method(&mut self) -> Result<&Self, QuickFixError>
pub fn set_trad_ses_mode( &mut self, value: TradSesMode, ) -> Result<&Self, QuickFixError>
pub fn remove_trad_ses_mode(&mut self) -> Result<&Self, QuickFixError>
pub fn set_subscription_request_type( &mut self, value: SubscriptionRequestType, ) -> Result<&Self, QuickFixError>
Trait Implementations§
Source§impl Clone for TradingSessionListRequest
impl Clone for TradingSessionListRequest
Source§fn clone(&self) -> TradingSessionListRequest
fn clone(&self) -> TradingSessionListRequest
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 TradingSessionListRequest
impl Debug for TradingSessionListRequest
Source§impl From<Message> for TradingSessionListRequest
impl From<Message> for TradingSessionListRequest
Source§impl From<TradingSessionListRequest> for Message
impl From<TradingSessionListRequest> for Message
Source§fn from(input: TradingSessionListRequest) -> Self
fn from(input: TradingSessionListRequest) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TradingSessionListRequest
impl RefUnwindSafe for TradingSessionListRequest
impl !Send for TradingSessionListRequest
impl !Sync for TradingSessionListRequest
impl Unpin for TradingSessionListRequest
impl UnwindSafe for TradingSessionListRequest
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