pub struct HistoricalSession {
pub start_date_time: String,
pub end_date_time: String,
pub ref_date: String,
}Expand description
Historical trading session.
Fields§
§start_date_time: StringSession start.
end_date_time: StringSession end.
ref_date: StringReference date.
Trait Implementations§
Source§impl Clone for HistoricalSession
impl Clone for HistoricalSession
Source§fn clone(&self) -> HistoricalSession
fn clone(&self) -> HistoricalSession
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 HistoricalSession
impl Debug for HistoricalSession
Source§impl Default for HistoricalSession
impl Default for HistoricalSession
Source§fn default() -> HistoricalSession
fn default() -> HistoricalSession
Returns the “default value” for a type. Read more
impl Eq for HistoricalSession
Source§impl PartialEq for HistoricalSession
impl PartialEq for HistoricalSession
impl StructuralPartialEq for HistoricalSession
Auto Trait Implementations§
impl Freeze for HistoricalSession
impl RefUnwindSafe for HistoricalSession
impl Send for HistoricalSession
impl Sync for HistoricalSession
impl Unpin for HistoricalSession
impl UnsafeUnpin for HistoricalSession
impl UnwindSafe for HistoricalSession
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