pub struct OHLC {
pub open: f64,
pub high: f64,
pub low: f64,
pub close: f64,
}Expand description
OHLC packet structure
Fields§
§open: f64§high: f64§low: f64§close: f64Trait Implementations§
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 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