pub struct Price {Show 13 fields
pub date: String,
pub open: BigDecimal,
pub close: BigDecimal,
pub high: BigDecimal,
pub low: BigDecimal,
pub volume: BigDecimal,
pub money: BigDecimal,
pub paused: Option<u8>,
pub high_limit: Option<f64>,
pub low_limit: Option<f64>,
pub avg: Option<f64>,
pub pre_close: Option<f64>,
pub open_interest: Option<f64>,
}
Fields§
§date: String
§open: BigDecimal
§close: BigDecimal
§high: BigDecimal
§low: BigDecimal
§volume: BigDecimal
§money: BigDecimal
§paused: Option<u8>
§high_limit: Option<f64>
§low_limit: Option<f64>
§avg: Option<f64>
§pre_close: Option<f64>
§open_interest: Option<f64>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Price
impl<'de> Deserialize<'de> for Price
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Price
impl RefUnwindSafe for Price
impl Send for Price
impl Sync for Price
impl Unpin for Price
impl UnwindSafe for Price
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