pub struct OrderSumaryState {
pub id: u64,
pub price: f64,
pub qty: f64,
pub quote_qty: f64,
pub symbol: String,
pub time: u128,
}Fields§
§id: u64§price: f64§qty: f64§quote_qty: f64§symbol: String§time: u128Trait Implementations§
Source§impl Clone for OrderSumaryState
impl Clone for OrderSumaryState
Source§fn clone(&self) -> OrderSumaryState
fn clone(&self) -> OrderSumaryState
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 OrderSumaryState
impl Debug for OrderSumaryState
Source§impl<'de> Deserialize<'de> for OrderSumaryState
impl<'de> Deserialize<'de> for OrderSumaryState
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 OrderSumaryState
impl RefUnwindSafe for OrderSumaryState
impl Send for OrderSumaryState
impl Sync for OrderSumaryState
impl Unpin for OrderSumaryState
impl UnwindSafe for OrderSumaryState
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