pub enum TickerBookResponse {
TickerBookResponse1(Box<TickerBookResponse1>),
TickerBookResponse2(Box<TickerBookResponse2>),
Other(Value),
}Variants§
TickerBookResponse1(Box<TickerBookResponse1>)
TickerBookResponse2(Box<TickerBookResponse2>)
Other(Value)
Trait Implementations§
Source§impl Clone for TickerBookResponse
impl Clone for TickerBookResponse
Source§fn clone(&self) -> TickerBookResponse
fn clone(&self) -> TickerBookResponse
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 TickerBookResponse
impl Debug for TickerBookResponse
Source§impl Default for TickerBookResponse
impl Default for TickerBookResponse
Source§impl<'de> Deserialize<'de> for TickerBookResponse
impl<'de> Deserialize<'de> for TickerBookResponse
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
Source§impl PartialEq for TickerBookResponse
impl PartialEq for TickerBookResponse
Source§fn eq(&self, other: &TickerBookResponse) -> bool
fn eq(&self, other: &TickerBookResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TickerBookResponse
impl Serialize for TickerBookResponse
impl StructuralPartialEq for TickerBookResponse
Auto Trait Implementations§
impl Freeze for TickerBookResponse
impl RefUnwindSafe for TickerBookResponse
impl Send for TickerBookResponse
impl Sync for TickerBookResponse
impl Unpin for TickerBookResponse
impl UnsafeUnpin for TickerBookResponse
impl UnwindSafe for TickerBookResponse
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