pub struct MemeEvent {Show 22 fields
pub event_type: TradeType,
pub timestamp: i64,
pub idx: String,
pub slot: u64,
pub signature: String,
pub user: String,
pub base_mint: String,
pub quote_mint: String,
pub input_token: Option<TokenInfo>,
pub output_token: Option<TokenInfo>,
pub name: Option<String>,
pub symbol: Option<String>,
pub uri: Option<String>,
pub decimals: Option<u8>,
pub total_supply: Option<f64>,
pub fee: Option<f64>,
pub protocol_fee: Option<f64>,
pub platform_fee: Option<f64>,
pub creator: Option<String>,
pub bonding_curve: Option<String>,
pub pool: Option<String>,
pub protocol: Option<String>,
}Fields§
§event_type: TradeType§timestamp: i64§idx: String§slot: u64§signature: String§user: String§base_mint: String§quote_mint: String§input_token: Option<TokenInfo>§output_token: Option<TokenInfo>§name: Option<String>§symbol: Option<String>§uri: Option<String>§decimals: Option<u8>§total_supply: Option<f64>§fee: Option<f64>§protocol_fee: Option<f64>§platform_fee: Option<f64>§creator: Option<String>§bonding_curve: Option<String>§pool: Option<String>§protocol: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for MemeEvent
impl<'de> Deserialize<'de> for MemeEvent
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 MemeEvent
impl RefUnwindSafe for MemeEvent
impl Send for MemeEvent
impl Sync for MemeEvent
impl Unpin for MemeEvent
impl UnsafeUnpin for MemeEvent
impl UnwindSafe for MemeEvent
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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