pub struct Candlestick {
pub start: f64,
pub high: f64,
pub low: f64,
pub end: f64,
pub volume: f64,
pub timestamp: NaiveDateTime,
}Fields§
§start: f64§high: f64§low: f64§end: f64§volume: f64§timestamp: NaiveDateTimeTrait Implementations§
Auto Trait Implementations§
impl Freeze for Candlestick
impl RefUnwindSafe for Candlestick
impl Send for Candlestick
impl Sync for Candlestick
impl Unpin for Candlestick
impl UnwindSafe for Candlestick
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