Struct hdp_preprocessor::compile::datalake::fetchable::FetchedDatalake
source · pub struct FetchedDatalake {
pub values: Vec<U256>,
pub headers: HashSet<ProcessedHeader>,
pub accounts: HashSet<ProcessedAccount>,
pub storages: HashSet<ProcessedStorage>,
pub transactions: HashSet<ProcessedTransaction>,
pub transaction_receipts: HashSet<ProcessedReceipt>,
pub mmr_metas: HashSet<MMRMeta>,
}
Fields§
§values: Vec<U256>
Targeted datalake’s compiled results
headers: HashSet<ProcessedHeader>
Headers related to the datalake
accounts: HashSet<ProcessedAccount>
Accounts related to the datalake
storages: HashSet<ProcessedStorage>
Storages related to the datalake
transactions: HashSet<ProcessedTransaction>
Transactions related to the datalake
transaction_receipts: HashSet<ProcessedReceipt>
Transaction receipts related to the datalake
mmr_metas: HashSet<MMRMeta>
MMR meta data related to the headers
Auto Trait Implementations§
impl Freeze for FetchedDatalake
impl RefUnwindSafe for FetchedDatalake
impl Send for FetchedDatalake
impl Sync for FetchedDatalake
impl Unpin for FetchedDatalake
impl UnwindSafe for FetchedDatalake
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> 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