pub struct ExchangeScheduleSession {
pub open_time: Option<String>,
pub close_time: Option<String>,
pub session_name: Option<String>,
pub session_type: Option<String>,
}Expand description
ExchangeScheduleSession : ExchangeScheduleSession represents a trading session
Fields§
§open_time: Option<String>Opening time of the session
close_time: Option<String>Closing time of the session
session_name: Option<String>Name of the session
session_type: Option<String>Type of the session
Implementations§
Source§impl ExchangeScheduleSession
impl ExchangeScheduleSession
Sourcepub fn new() -> ExchangeScheduleSession
pub fn new() -> ExchangeScheduleSession
ExchangeScheduleSession represents a trading session
Trait Implementations§
Source§impl Clone for ExchangeScheduleSession
impl Clone for ExchangeScheduleSession
Source§fn clone(&self) -> ExchangeScheduleSession
fn clone(&self) -> ExchangeScheduleSession
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 ExchangeScheduleSession
impl Debug for ExchangeScheduleSession
Source§impl Default for ExchangeScheduleSession
impl Default for ExchangeScheduleSession
Source§fn default() -> ExchangeScheduleSession
fn default() -> ExchangeScheduleSession
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExchangeScheduleSession
impl<'de> Deserialize<'de> for ExchangeScheduleSession
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ExchangeScheduleSession
impl PartialEq for ExchangeScheduleSession
Source§impl Serialize for ExchangeScheduleSession
impl Serialize for ExchangeScheduleSession
impl StructuralPartialEq for ExchangeScheduleSession
Auto Trait Implementations§
impl Freeze for ExchangeScheduleSession
impl RefUnwindSafe for ExchangeScheduleSession
impl Send for ExchangeScheduleSession
impl Sync for ExchangeScheduleSession
impl Unpin for ExchangeScheduleSession
impl UnwindSafe for ExchangeScheduleSession
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