pub struct TradingSessionList {
pub message: Message,
}Expand description
TradingSessionList is the fix50 TradingSessionList type, MsgType = BJ.
Fields§
§message: MessageImplementations§
Source§impl TradingSessionList
impl TradingSessionList
Sourcepub fn new(no_trading_sessions: NoTradingSessionsField) -> Self
pub fn new(no_trading_sessions: NoTradingSessionsField) -> Self
Creates a new TradingSessionList with required fields.
Sourcepub fn from_message(msg: Message) -> Self
pub fn from_message(msg: Message) -> Self
Creates a TradingSessionList from an existing Message.
Sourcepub fn to_message(self) -> Message
pub fn to_message(self) -> Message
Returns the underlying Message.
Sourcepub fn set_no_trading_sessions(&mut self, v: isize)
pub fn set_no_trading_sessions(&mut self, v: isize)
Sets NoTradingSessions, Tag 386.
Sourcepub fn get_no_trading_sessions(&self) -> Result<isize, MessageRejectErrorEnum>
pub fn get_no_trading_sessions(&self) -> Result<isize, MessageRejectErrorEnum>
Gets NoTradingSessions, Tag 386.
Sourcepub fn has_no_trading_sessions(&self) -> bool
pub fn has_no_trading_sessions(&self) -> bool
Returns true if NoTradingSessions is present, Tag 386.
Sourcepub fn set_trad_ses_req_id(&mut self, v: String)
pub fn set_trad_ses_req_id(&mut self, v: String)
Sets TradSesReqID, Tag 335.
Sourcepub fn get_trad_ses_req_id(&self) -> Result<String, MessageRejectErrorEnum>
pub fn get_trad_ses_req_id(&self) -> Result<String, MessageRejectErrorEnum>
Gets TradSesReqID, Tag 335.
Sourcepub fn has_trad_ses_req_id(&self) -> bool
pub fn has_trad_ses_req_id(&self) -> bool
Returns true if TradSesReqID is present, Tag 335.
Auto Trait Implementations§
impl !Freeze for TradingSessionList
impl RefUnwindSafe for TradingSessionList
impl Send for TradingSessionList
impl Sync for TradingSessionList
impl Unpin for TradingSessionList
impl UnsafeUnpin 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