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