pub struct TradingSessionStatusRequest { /* private fields */ }
Implementations§
Source§impl TradingSessionStatusRequest
impl TradingSessionStatusRequest
pub const MSG_TYPE_BYTES: &'static str = "g"
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 TradingSessionStatusRequest
impl TradingSessionStatusRequest
pub fn try_new( trad_ses_req_id: TradSesReqID, subscription_request_type: SubscriptionRequestType, ) -> Result<Self, QuickFixError>
Source§impl TradingSessionStatusRequest
impl TradingSessionStatusRequest
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_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_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 TradingSessionStatusRequest
impl Clone for TradingSessionStatusRequest
Source§fn clone(&self) -> TradingSessionStatusRequest
fn clone(&self) -> TradingSessionStatusRequest
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 TradingSessionStatusRequest
impl Debug for TradingSessionStatusRequest
Source§impl From<Message> for TradingSessionStatusRequest
impl From<Message> for TradingSessionStatusRequest
Source§impl From<TradingSessionStatusRequest> for Message
impl From<TradingSessionStatusRequest> for Message
Source§fn from(input: TradingSessionStatusRequest) -> Self
fn from(input: TradingSessionStatusRequest) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TradingSessionStatusRequest
impl RefUnwindSafe for TradingSessionStatusRequest
impl !Send for TradingSessionStatusRequest
impl !Sync for TradingSessionStatusRequest
impl Unpin for TradingSessionStatusRequest
impl UnwindSafe for TradingSessionStatusRequest
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