pub struct BasicQot {Show 14 fields
pub security: Security,
pub is_suspended: bool,
pub list_time: String,
pub price_spread: f64,
pub update_time: String,
pub high_price: f64,
pub open_price: f64,
pub low_price: f64,
pub cur_price: f64,
pub last_close_price: f64,
pub volume: i64,
pub turnover: f64,
pub turnover_rate: f64,
pub amplitude: f64,
}Expand description
基本行情数据
Fields§
§security: Security§is_suspended: bool§list_time: String§price_spread: f64§update_time: String§high_price: f64§open_price: f64§low_price: f64§cur_price: f64§last_close_price: f64§volume: i64§turnover: f64§turnover_rate: f64§amplitude: f64Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BasicQot
impl RefUnwindSafe for BasicQot
impl Send for BasicQot
impl Sync for BasicQot
impl Unpin for BasicQot
impl UnwindSafe for BasicQot
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