pub struct Kline {
pub start_time: u64,
pub open: Decimal,
pub high: Decimal,
pub low: Decimal,
pub close: Decimal,
pub volume: Decimal,
pub turnover: Decimal,
}Expand description
Parsed kline data.
Fields§
§start_time: u64Start time in milliseconds
open: DecimalOpen price
high: DecimalHigh price
low: DecimalLow price
close: DecimalClose price
volume: DecimalVolume
turnover: DecimalTurnover
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Kline
impl RefUnwindSafe for Kline
impl Send for Kline
impl Sync for Kline
impl Unpin for Kline
impl UnsafeUnpin for Kline
impl UnwindSafe for Kline
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