pub struct SnapshotData {Show 19 fields
pub trading: bool,
pub symbol: String,
pub buy: f32,
pub sell: f32,
pub sort: i32,
pub vol_value: f32,
pub base_currency: String,
pub market: String,
pub quote_currency: String,
pub symbol_code: String,
pub datetime: i64,
pub high: Option<f32>,
pub vol: f32,
pub low: Option<f32>,
pub change_price: Option<f32>,
pub change_rate: f32,
pub last_traded_price: f32,
pub board: i32,
pub mark: i32,
}Fields§
§trading: bool§symbol: String§buy: f32§sell: f32§sort: i32§vol_value: f32§base_currency: String§market: String§quote_currency: String§symbol_code: String§datetime: i64§high: Option<f32>§vol: f32§low: Option<f32>§change_price: Option<f32>§change_rate: f32§last_traded_price: f32§board: i32§mark: i32Trait Implementations§
Source§impl Clone for SnapshotData
impl Clone for SnapshotData
Source§fn clone(&self) -> SnapshotData
fn clone(&self) -> SnapshotData
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 SnapshotData
impl Debug for SnapshotData
Source§impl<'de> Deserialize<'de> for SnapshotData
impl<'de> Deserialize<'de> for SnapshotData
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 SnapshotData
impl RefUnwindSafe for SnapshotData
impl Send for SnapshotData
impl Sync for SnapshotData
impl Unpin for SnapshotData
impl UnsafeUnpin for SnapshotData
impl UnwindSafe for SnapshotData
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