struct KLineOut {
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 KLineOut
impl RefUnwindSafe for KLineOut
impl Send for KLineOut
impl Sync for KLineOut
impl Unpin for KLineOut
impl UnwindSafe for KLineOut
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