pub struct LongShortRatioRecord {
pub symbol: Option<String>,
pub buy_ratio: Option<String>,
pub sell_ratio: Option<String>,
pub timestamp: Option<String>,
}Expand description
Long/short ratio record.
Fields§
§symbol: Option<String>§buy_ratio: Option<String>§sell_ratio: Option<String>§timestamp: Option<String>Trait Implementations§
Source§impl Clone for LongShortRatioRecord
impl Clone for LongShortRatioRecord
Source§fn clone(&self) -> LongShortRatioRecord
fn clone(&self) -> LongShortRatioRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LongShortRatioRecord
impl Debug for LongShortRatioRecord
Source§impl<'de> Deserialize<'de> for LongShortRatioRecord
impl<'de> Deserialize<'de> for LongShortRatioRecord
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 LongShortRatioRecord
impl RefUnwindSafe for LongShortRatioRecord
impl Send for LongShortRatioRecord
impl Sync for LongShortRatioRecord
impl Unpin for LongShortRatioRecord
impl UnsafeUnpin for LongShortRatioRecord
impl UnwindSafe for LongShortRatioRecord
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