pub struct Ticker {
pub time: String,
pub sequence: i64,
pub dir: i32,
pub price: f64,
pub volume: i64,
pub turnover: f64,
pub ticker_type: Option<i32>,
pub timestamp: f64,
}Expand description
逐笔成交数据
Fields§
§time: String§sequence: i64§dir: i32§price: f64§volume: i64§turnover: f64§ticker_type: Option<i32>§timestamp: f64Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Ticker
impl RefUnwindSafe for Ticker
impl Send for Ticker
impl Sync for Ticker
impl Unpin for Ticker
impl UnwindSafe for Ticker
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