pub struct Volume {
pub h24: Option<f64>,
pub h6: Option<f64>,
pub h1: Option<f64>,
pub m5: Option<f64>,
}Expand description
Clean volume statistics
Fields§
§h24: Option<f64>Trading volume in the last 24 hours
h6: Option<f64>Trading volume in the last 6 hours
h1: Option<f64>Trading volume in the last 1 hour
m5: Option<f64>Trading volume in the last 5 minutes
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Volume
impl<'de> Deserialize<'de> for Volume
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 Volume
impl RefUnwindSafe for Volume
impl Send for Volume
impl Sync for Volume
impl Unpin for Volume
impl UnwindSafe for Volume
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