pub struct QuoteList {
pub volume: Option<Vec<Option<u64>>>,
pub high: Option<Vec<Option<Decimal>>>,
pub close: Option<Vec<Option<Decimal>>>,
pub low: Option<Vec<Option<Decimal>>>,
pub open: Option<Vec<Option<Decimal>>>,
}Fields§
§volume: Option<Vec<Option<u64>>>§high: Option<Vec<Option<Decimal>>>§close: Option<Vec<Option<Decimal>>>§low: Option<Vec<Option<Decimal>>>§open: Option<Vec<Option<Decimal>>>Trait Implementations§
Source§impl<'de> Deserialize<'de> for QuoteList
impl<'de> Deserialize<'de> for QuoteList
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 QuoteList
impl RefUnwindSafe for QuoteList
impl Send for QuoteList
impl Sync for QuoteList
impl Unpin for QuoteList
impl UnwindSafe for QuoteList
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