struct OvernightOut {
price: Option<f64>,
high: Option<f64>,
low: Option<f64>,
volume: Option<i64>,
turnover: Option<f64>,
change_val: Option<f64>,
change_rate: Option<f64>,
amplitude: Option<f64>,
}Expand description
v1.4.72 BUG-006 L4: 美股夜盘 OHLCV 数据(对齐 proto Qot_Common::PreAfterMarketData)
Fields§
§price: Option<f64>夜盘最新价
high: Option<f64>夜盘最高价
low: Option<f64>夜盘最低价
volume: Option<i64>夜盘成交量
turnover: Option<f64>夜盘成交额
change_val: Option<f64>夜盘涨跌
change_rate: Option<f64>夜盘涨跌幅(%)
amplitude: Option<f64>夜盘振幅
Trait Implementations§
Auto Trait Implementations§
impl Freeze for OvernightOut
impl RefUnwindSafe for OvernightOut
impl Send for OvernightOut
impl Sync for OvernightOut
impl Unpin for OvernightOut
impl UnsafeUnpin for OvernightOut
impl UnwindSafe for OvernightOut
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more