pub struct TokenOrMarketDataItem {Show 25 fields
pub name: Option<String>,
pub symbol: Option<String>,
pub address: Option<String>,
pub decimals: u64,
pub fdv: Option<f64>,
pub market_cap: Option<f64>,
pub liquidity: u64,
pub volume_24h_change_percent: f64,
pub price: Option<f64>,
pub price_change_24h_percent: Option<f64>,
pub network: Option<String>,
pub buy_24h: u64,
pub buy_24h_change_percent: Option<f64>,
pub sell_24h: u64,
pub sell_24h_change_percent: Option<f64>,
pub trade_24h: u64,
pub trade_24h_change_percent: Option<f64>,
pub unique_wallet_24h: u64,
pub unique_view_24h_change_percent: Option<f64>,
pub last_trade_human_time: Option<String>,
pub last_trade_unix_time: u64,
pub creation_time: Option<String>,
pub volume_24h_usd: f64,
pub logo_uri: Option<String>,
pub verified: bool,
}Fields§
§name: Option<String>§symbol: Option<String>§address: Option<String>§decimals: u64§fdv: Option<f64>§market_cap: Option<f64>§liquidity: u64§volume_24h_change_percent: f64§price: Option<f64>§price_change_24h_percent: Option<f64>§network: Option<String>§buy_24h: u64§buy_24h_change_percent: Option<f64>§sell_24h: u64§sell_24h_change_percent: Option<f64>§trade_24h: u64§trade_24h_change_percent: Option<f64>§unique_wallet_24h: u64§unique_view_24h_change_percent: Option<f64>§last_trade_human_time: Option<String>§last_trade_unix_time: u64§creation_time: Option<String>§volume_24h_usd: f64§logo_uri: Option<String>§verified: boolTrait Implementations§
Source§impl Debug for TokenOrMarketDataItem
impl Debug for TokenOrMarketDataItem
Source§impl<'de> Deserialize<'de> for TokenOrMarketDataItem
impl<'de> Deserialize<'de> for TokenOrMarketDataItem
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 TokenOrMarketDataItem
impl RefUnwindSafe for TokenOrMarketDataItem
impl Send for TokenOrMarketDataItem
impl Sync for TokenOrMarketDataItem
impl Unpin for TokenOrMarketDataItem
impl UnwindSafe for TokenOrMarketDataItem
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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