pub struct MidPoint {
pub time: OffsetDateTime,
pub mid_point: f64,
}Expand description
Represents MidPoint tick by tick realtime tick.
Fields§
§time: OffsetDateTimeThe trade’s date and time (either as a yyyymmss hh:mm:ss formatted string or as system time according to the request). Time zone is the TWS time zone chosen on login.
mid_point: f64mid point
Trait Implementations§
Source§impl<'de> Deserialize<'de> for MidPoint
impl<'de> Deserialize<'de> for MidPoint
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
impl StructuralPartialEq for MidPoint
Auto Trait Implementations§
impl Freeze for MidPoint
impl RefUnwindSafe for MidPoint
impl Send for MidPoint
impl Sync for MidPoint
impl Unpin for MidPoint
impl UnsafeUnpin for MidPoint
impl UnwindSafe for MidPoint
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