pub struct Ohlc {
pub open: f64,
pub high: f64,
pub low: f64,
pub close: f64,
}Fields§
§open: f64§high: f64§low: f64§close: f64Implementations§
Trait Implementations§
impl Copy for Ohlc
impl StructuralPartialEq for Ohlc
Auto Trait Implementations§
impl Freeze for Ohlc
impl RefUnwindSafe for Ohlc
impl Send for Ohlc
impl Sync for Ohlc
impl Unpin for Ohlc
impl UnsafeUnpin for Ohlc
impl UnwindSafe for Ohlc
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