struct SnapshotOut {Show 21 fields
symbol: String,
name: Option<String>,
update_time: String,
cur_price: f64,
last_close: f64,
change_rate: f64,
open: f64,
high: f64,
low: f64,
volume: i64,
turnover: f64,
turnover_rate: f64,
amplitude: Option<f64>,
avg_price: Option<f64>,
volume_ratio: Option<f64>,
highest52: Option<f64>,
lowest52: Option<f64>,
ask_price: Option<f64>,
bid_price: Option<f64>,
is_suspend: bool,
lot_size: i32,
}Fields§
§symbol: String§name: Option<String>§update_time: String§cur_price: f64§last_close: f64§change_rate: f64§open: f64§high: f64§low: f64§volume: i64§turnover: f64§turnover_rate: f64§amplitude: Option<f64>§avg_price: Option<f64>§volume_ratio: Option<f64>§highest52: Option<f64>§lowest52: Option<f64>§ask_price: Option<f64>§bid_price: Option<f64>§is_suspend: bool§lot_size: i32Trait Implementations§
Auto Trait Implementations§
impl Freeze for SnapshotOut
impl RefUnwindSafe for SnapshotOut
impl Send for SnapshotOut
impl Sync for SnapshotOut
impl Unpin for SnapshotOut
impl UnwindSafe for SnapshotOut
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