pub struct OrderbookResult {
pub s: Option<String>,
pub b: Option<Vec<OrderbookLevel>>,
pub a: Option<Vec<OrderbookLevel>>,
pub ts: Option<i64>,
pub u: Option<i64>,
pub seq: Option<i64>,
pub cts: Option<i64>,
}Fields§
§s: Option<String>§b: Option<Vec<OrderbookLevel>>§a: Option<Vec<OrderbookLevel>>§ts: Option<i64>§u: Option<i64>§seq: Option<i64>§cts: Option<i64>Trait Implementations§
Source§impl Clone for OrderbookResult
impl Clone for OrderbookResult
Source§fn clone(&self) -> OrderbookResult
fn clone(&self) -> OrderbookResult
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 OrderbookResult
impl Debug for OrderbookResult
Source§impl<'de> Deserialize<'de> for OrderbookResult
impl<'de> Deserialize<'de> for OrderbookResult
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 OrderbookResult
impl RefUnwindSafe for OrderbookResult
impl Send for OrderbookResult
impl Sync for OrderbookResult
impl Unpin for OrderbookResult
impl UnsafeUnpin for OrderbookResult
impl UnwindSafe for OrderbookResult
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