pub struct SlotExtract {
pub block: BlockData,
pub transactions: Vec<TransactionData>,
pub token_transfers: Vec<TokenTransferData>,
pub account_activity: Vec<AccountActivityData>,
}Expand description
All extracted data for a single slot.
Returned by extract_block(). Contains the block metadata, all transactions,
token balance changes, and account activity records.
All extracted data for a single slot.
Returned by extract_block(). Contains the block metadata,
all transactions, token balance changes, and account activity records.
Fields§
§block: BlockData§transactions: Vec<TransactionData>§token_transfers: Vec<TokenTransferData>§account_activity: Vec<AccountActivityData>Auto Trait Implementations§
impl Freeze for SlotExtract
impl RefUnwindSafe for SlotExtract
impl Send for SlotExtract
impl Sync for SlotExtract
impl Unpin for SlotExtract
impl UnsafeUnpin for SlotExtract
impl UnwindSafe for SlotExtract
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