pub struct GetTickerGetTicker {Show 13 fields
pub id: String,
pub a_volume24h: GetTickerGetTickerAVolume24h,
pub b_volume24h: GetTickerGetTickerBVolume24h,
pub best_ask_price: Option<GetTickerGetTickerBestAskPrice>,
pub best_ask_size: Option<GetTickerGetTickerBestAskSize>,
pub best_bid_price: Option<GetTickerGetTickerBestBidPrice>,
pub best_bid_size: Option<GetTickerGetTickerBestBidSize>,
pub high_price24h: Option<GetTickerGetTickerHighPrice24h>,
pub last_price: Option<GetTickerGetTickerLastPrice>,
pub low_price24h: Option<GetTickerGetTickerLowPrice24h>,
pub price_change24h: Option<GetTickerGetTickerPriceChange24h>,
pub volume24h: GetTickerGetTickerVolume24h,
pub market_name: String,
}Fields§
§id: String§a_volume24h: GetTickerGetTickerAVolume24h§b_volume24h: GetTickerGetTickerBVolume24h§best_ask_price: Option<GetTickerGetTickerBestAskPrice>§best_ask_size: Option<GetTickerGetTickerBestAskSize>§best_bid_price: Option<GetTickerGetTickerBestBidPrice>§best_bid_size: Option<GetTickerGetTickerBestBidSize>§high_price24h: Option<GetTickerGetTickerHighPrice24h>§last_price: Option<GetTickerGetTickerLastPrice>§low_price24h: Option<GetTickerGetTickerLowPrice24h>§price_change24h: Option<GetTickerGetTickerPriceChange24h>§volume24h: GetTickerGetTickerVolume24h§market_name: StringTrait Implementations§
Source§impl Debug for GetTickerGetTicker
impl Debug for GetTickerGetTicker
Source§impl<'de> Deserialize<'de> for GetTickerGetTicker
impl<'de> Deserialize<'de> for GetTickerGetTicker
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 GetTickerGetTicker
impl RefUnwindSafe for GetTickerGetTicker
impl Send for GetTickerGetTicker
impl Sync for GetTickerGetTicker
impl Unpin for GetTickerGetTicker
impl UnsafeUnpin for GetTickerGetTicker
impl UnwindSafe for GetTickerGetTicker
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more