struct KLineJson {
time: String,
timestamp: f64,
open: f64,
high: f64,
low: f64,
close: f64,
last_close: f64,
change_rate: f64,
volume: i64,
turnover: f64,
turnover_rate: f64,
pe: f64,
}Fields§
§time: String§timestamp: f64§open: f64§high: f64§low: f64§close: f64§last_close: f64§change_rate: f64§volume: i64§turnover: f64§turnover_rate: f64§pe: f64Trait Implementations§
Auto Trait Implementations§
impl Freeze for KLineJson
impl RefUnwindSafe for KLineJson
impl Send for KLineJson
impl Sync for KLineJson
impl Unpin for KLineJson
impl UnsafeUnpin for KLineJson
impl UnwindSafe for KLineJson
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