pub struct TradingSessionList { /* private fields */ }
Implementations§
Source§impl TradingSessionList
impl TradingSessionList
pub const MSG_TYPE_BYTES: &'static str = "BJ"
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 TradingSessionList
impl TradingSessionList
pub fn try_new() -> Result<Self, QuickFixError>
Source§impl TradingSessionList
impl TradingSessionList
pub fn get_trad_ses_req_id(&self) -> Option<TradSesReqID>
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 set_trad_ses_req_id( &mut self, value: TradSesReqID, ) -> Result<&Self, QuickFixError>
pub fn remove_trad_ses_req_id(&mut self) -> Result<&Self, QuickFixError>
pub fn add_no_trading_sessions( &mut self, value: NoTradingSessions, ) -> Result<&Self, QuickFixError>
Trait Implementations§
Source§impl Clone for TradingSessionList
impl Clone for TradingSessionList
Source§fn clone(&self) -> TradingSessionList
fn clone(&self) -> TradingSessionList
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 TradingSessionList
impl Debug for TradingSessionList
Source§impl From<Message> for TradingSessionList
impl From<Message> for TradingSessionList
Source§impl From<TradingSessionList> for Message
impl From<TradingSessionList> for Message
Source§fn from(input: TradingSessionList) -> Self
fn from(input: TradingSessionList) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TradingSessionList
impl RefUnwindSafe for TradingSessionList
impl !Send for TradingSessionList
impl !Sync for TradingSessionList
impl Unpin for TradingSessionList
impl UnwindSafe for TradingSessionList
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