pub struct LongShortRatio {
pub symbol: String,
pub buy_ratio: f64,
pub sell_ratio: f64,
pub timestamp: u64,
}Fields§
§symbol: String§buy_ratio: f64§sell_ratio: f64§timestamp: u64Trait Implementations§
Source§impl Clone for LongShortRatio
impl Clone for LongShortRatio
Source§fn clone(&self) -> LongShortRatio
fn clone(&self) -> LongShortRatio
Returns a copy 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 LongShortRatio
impl Debug for LongShortRatio
Source§impl<'de> Deserialize<'de> for LongShortRatio
impl<'de> Deserialize<'de> for LongShortRatio
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 LongShortRatio
impl RefUnwindSafe for LongShortRatio
impl Send for LongShortRatio
impl Sync for LongShortRatio
impl Unpin for LongShortRatio
impl UnwindSafe for LongShortRatio
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