pub struct ParseResult {Show 16 fields
pub state: bool,
pub fee: TokenAmount,
pub aggregate_trade: Option<TradeInfo>,
pub trades: Vec<TradeInfo>,
pub liquidities: Vec<PoolEvent>,
pub transfers: Vec<TransferData>,
pub meme_events: Vec<MemeEvent>,
pub slot: u64,
pub timestamp: i64,
pub signature: String,
pub signer: Vec<String>,
pub compute_units: u64,
pub tx_status: TransactionStatus,
pub msg: Option<String>,
pub sol_balance_change: Option<BalanceChange>,
pub token_balance_change: Option<HashMap<String, BalanceChange>>,
}Fields§
§state: bool§fee: TokenAmount§aggregate_trade: Option<TradeInfo>§trades: Vec<TradeInfo>§liquidities: Vec<PoolEvent>§transfers: Vec<TransferData>§meme_events: Vec<MemeEvent>§slot: u64§timestamp: i64§signature: String§signer: Vec<String>§compute_units: u64§tx_status: TransactionStatus§msg: Option<String>§sol_balance_change: Option<BalanceChange>§token_balance_change: Option<HashMap<String, BalanceChange>>Trait Implementations§
Source§impl Clone for ParseResult
impl Clone for ParseResult
Source§fn clone(&self) -> ParseResult
fn clone(&self) -> ParseResult
Returns a duplicate of the value. Read more
1.0.0 · 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 ParseResult
impl Debug for ParseResult
Source§impl<'de> Deserialize<'de> for ParseResult
impl<'de> Deserialize<'de> for ParseResult
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 ParseResult
impl RefUnwindSafe for ParseResult
impl Send for ParseResult
impl Sync for ParseResult
impl Unpin for ParseResult
impl UnsafeUnpin for ParseResult
impl UnwindSafe for ParseResult
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