struct QuoteOut {
symbol: String,
update_time: String,
cur_price: f64,
last_close: f64,
open: f64,
high: f64,
low: f64,
volume: i64,
turnover: f64,
turnover_rate: f64,
amplitude: f64,
change_rate: f64,
}Fields§
§symbol: String§update_time: String§cur_price: f64§last_close: f64§open: f64§high: f64§low: f64§volume: i64§turnover: f64§turnover_rate: f64§amplitude: f64§change_rate: f64Trait Implementations§
Auto Trait Implementations§
impl Freeze for QuoteOut
impl RefUnwindSafe for QuoteOut
impl Send for QuoteOut
impl Sync for QuoteOut
impl Unpin for QuoteOut
impl UnwindSafe for QuoteOut
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