pub struct CachedTimeShare {
pub time: String,
pub minute: i32,
pub price: f64,
pub last_close_price: f64,
pub avg_price: f64,
pub volume: i64,
pub turnover: f64,
pub timestamp: f64,
}Expand description
分时数据点
Fields§
§time: String§minute: i32§price: f64§last_close_price: f64§avg_price: f64§volume: i64§turnover: f64§timestamp: f64Trait Implementations§
Source§fn clone(&self) -> CachedTimeShare
fn clone(&self) -> CachedTimeShare
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
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