pub struct Rate {
pub time: i64,
pub open: f64,
pub high: f64,
pub low: f64,
pub close: f64,
pub tick_volume: u64,
pub spread: i32,
pub real_volume: u64,
}Fields§
§time: i64§open: f64§high: f64§low: f64§close: f64§tick_volume: u64§spread: i32§real_volume: u64Trait Implementations§
Auto Trait Implementations§
impl Freeze for Rate
impl RefUnwindSafe for Rate
impl Send for Rate
impl Sync for Rate
impl Unpin for Rate
impl UnsafeUnpin for Rate
impl UnwindSafe for Rate
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