pub struct TimeShare {
pub time: String,
pub minute: i32,
pub is_blank: bool,
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§is_blank: bool§price: f64§last_close_price: f64§avg_price: f64§volume: i64§turnover: f64§timestamp: f64Implementations§
pub fn from_proto(t: &TimeShare) -> Self
Trait Implementations§
Auto 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