pub struct PumpTokenInfo {Show 30 fields
pub associated_bonding_curve: String,
pub bonding_curve: String,
pub complete: bool,
pub created_timestamp: i64,
pub creator: String,
pub description: String,
pub image_uri: String,
pub inverted: bool,
pub is_currently_live: bool,
pub king_of_the_hill_timestamp: i64,
pub last_reply: i64,
pub market_cap: f64,
pub market_id: String,
pub metadata_uri: String,
pub mint: String,
pub name: String,
pub nsfw: bool,
pub profile_image: Option<String>,
pub raydium_pool: String,
pub reply_count: i32,
pub show_name: bool,
pub symbol: String,
pub telegram: Option<String>,
pub total_supply: i64,
pub twitter: Option<String>,
pub usd_market_cap: f64,
pub username: Option<String>,
pub virtual_sol_reserves: i64,
pub virtual_token_reserves: i64,
pub website: Option<String>,
}Fields§
§associated_bonding_curve: String§bonding_curve: String§complete: bool§created_timestamp: i64§creator: String§description: String§image_uri: String§inverted: bool§is_currently_live: bool§king_of_the_hill_timestamp: i64§last_reply: i64§market_cap: f64§market_id: String§metadata_uri: String§mint: String§name: String§nsfw: bool§profile_image: Option<String>§raydium_pool: String§reply_count: i32§show_name: bool§symbol: String§telegram: Option<String>§total_supply: i64§twitter: Option<String>§usd_market_cap: f64§username: Option<String>§virtual_sol_reserves: i64§virtual_token_reserves: i64§website: Option<String>Trait Implementations§
Source§impl Debug for PumpTokenInfo
impl Debug for PumpTokenInfo
Source§impl<'de> Deserialize<'de> for PumpTokenInfo
impl<'de> Deserialize<'de> for PumpTokenInfo
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 PumpTokenInfo
impl RefUnwindSafe for PumpTokenInfo
impl Send for PumpTokenInfo
impl Sync for PumpTokenInfo
impl Unpin for PumpTokenInfo
impl UnwindSafe for PumpTokenInfo
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