pub struct PlatformStats {
pub total_volume: f64,
pub total_trades: u64,
pub total_users: u64,
pub open_interest: f64,
pub total_fees: f64,
}Fields§
§total_volume: f64§total_trades: u64§total_users: u64§open_interest: f64§total_fees: f64Trait Implementations§
Source§impl Clone for PlatformStats
impl Clone for PlatformStats
Source§fn clone(&self) -> PlatformStats
fn clone(&self) -> PlatformStats
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PlatformStats
impl Debug for PlatformStats
Source§impl<'de> Deserialize<'de> for PlatformStats
impl<'de> Deserialize<'de> for PlatformStats
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 PlatformStats
impl RefUnwindSafe for PlatformStats
impl Send for PlatformStats
impl Sync for PlatformStats
impl Unpin for PlatformStats
impl UnsafeUnpin for PlatformStats
impl UnwindSafe for PlatformStats
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