pub struct TwentyFourHourStats {
pub open: String,
pub high: String,
pub low: String,
pub volume: String,
pub last: String,
pub volume_30day: String,
}Expand description
A structure that represents 24 hr stats for a product
Fields§
§open: String§high: String§low: String§volume: String§last: String§volume_30day: StringTrait Implementations§
Source§impl Debug for TwentyFourHourStats
impl Debug for TwentyFourHourStats
Source§impl<'de> Deserialize<'de> for TwentyFourHourStats
impl<'de> Deserialize<'de> for TwentyFourHourStats
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 TwentyFourHourStats
impl RefUnwindSafe for TwentyFourHourStats
impl Send for TwentyFourHourStats
impl Sync for TwentyFourHourStats
impl Unpin for TwentyFourHourStats
impl UnwindSafe for TwentyFourHourStats
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