pub struct StaticFileProvider<N>(/* private fields */);
Expand description
StaticFileProvider
manages all existing StaticFileJarProvider
.
Implementations§
Source§impl<N: NodePrimitives> StaticFileProvider<N>
impl<N: NodePrimitives> StaticFileProvider<N>
Sourcepub fn read_only(
path: impl AsRef<Path>,
watch_directory: bool,
) -> ProviderResult<Self>
pub fn read_only( path: impl AsRef<Path>, watch_directory: bool, ) -> ProviderResult<Self>
Creates a new StaticFileProvider
with read-only access.
Set watch_directory
to true
to track the most recent changes in static files. Otherwise,
new data won’t be detected or queryable.
Sourcepub fn read_write(path: impl AsRef<Path>) -> ProviderResult<Self>
pub fn read_write(path: impl AsRef<Path>) -> ProviderResult<Self>
Creates a new StaticFileProvider
with read-write access.
Sourcepub fn watch_directory(&self)
pub fn watch_directory(&self)
Watches the directory for changes and updates the in-memory index when modifications are detected.
This may be necessary, since a non-node process that owns a StaticFileProvider
does not
receive update_index
notifications from a node that appends/truncates data.
Source§impl<N: NodePrimitives> StaticFileProvider<N>
impl<N: NodePrimitives> StaticFileProvider<N>
Sourcepub fn with_custom_blocks_per_file(self, blocks_per_file: u64) -> Self
Available on crate feature test-utils
only.
pub fn with_custom_blocks_per_file(self, blocks_per_file: u64) -> Self
test-utils
only.Set a custom number of blocks per file.
Sourcepub fn with_metrics(self) -> Self
pub fn with_metrics(self) -> Self
Enables metrics on the StaticFileProvider
.
Sourcepub fn report_metrics(&self) -> ProviderResult<()>
pub fn report_metrics(&self) -> ProviderResult<()>
Reports metrics for the static files.
Sourcepub fn get_segment_provider_from_block(
&self,
segment: StaticFileSegment,
block: BlockNumber,
path: Option<&Path>,
) -> ProviderResult<StaticFileJarProvider<'_, N>>
pub fn get_segment_provider_from_block( &self, segment: StaticFileSegment, block: BlockNumber, path: Option<&Path>, ) -> ProviderResult<StaticFileJarProvider<'_, N>>
Gets the StaticFileJarProvider
of the requested segment and block.
Sourcepub fn get_segment_provider_from_transaction(
&self,
segment: StaticFileSegment,
tx: TxNumber,
path: Option<&Path>,
) -> ProviderResult<StaticFileJarProvider<'_, N>>
pub fn get_segment_provider_from_transaction( &self, segment: StaticFileSegment, tx: TxNumber, path: Option<&Path>, ) -> ProviderResult<StaticFileJarProvider<'_, N>>
Gets the StaticFileJarProvider
of the requested segment and transaction.
Sourcepub fn get_segment_provider(
&self,
segment: StaticFileSegment,
fn_range: impl Fn() -> Option<SegmentRangeInclusive>,
path: Option<&Path>,
) -> ProviderResult<Option<StaticFileJarProvider<'_, N>>>
pub fn get_segment_provider( &self, segment: StaticFileSegment, fn_range: impl Fn() -> Option<SegmentRangeInclusive>, path: Option<&Path>, ) -> ProviderResult<Option<StaticFileJarProvider<'_, N>>>
Gets the StaticFileJarProvider
of the requested segment and block or transaction.
fn_range
should make sure the range goes through find_fixed_range
.
Sourcepub fn remove_cached_provider(
&self,
segment: StaticFileSegment,
fixed_block_range_end: BlockNumber,
)
pub fn remove_cached_provider( &self, segment: StaticFileSegment, fixed_block_range_end: BlockNumber, )
Given a segment and block range it removes the cached provider from the map.
CAUTION: cached provider should be dropped before calling this or IT WILL deadlock.
Sourcepub fn delete_jar(
&self,
segment: StaticFileSegment,
block: BlockNumber,
) -> ProviderResult<()>
pub fn delete_jar( &self, segment: StaticFileSegment, block: BlockNumber, ) -> ProviderResult<()>
Given a segment and block, it deletes the jar and all files from the respective block range.
CAUTION: destructive. Deletes files on disk.
Sourcepub fn update_index(
&self,
segment: StaticFileSegment,
segment_max_block: Option<BlockNumber>,
) -> ProviderResult<()>
pub fn update_index( &self, segment: StaticFileSegment, segment_max_block: Option<BlockNumber>, ) -> ProviderResult<()>
Updates the inner transaction and block indexes alongside the internal cached providers in
self.map
.
Any entry higher than segment_max_block
will be deleted from the previous structures.
If segment_max_block
is None it means there’s no static file for this segment.
Sourcepub fn initialize_index(&self) -> ProviderResult<()>
pub fn initialize_index(&self) -> ProviderResult<()>
Initializes the inner transaction and block index
Sourcepub fn check_consistency<Provider>(
&self,
provider: &Provider,
has_receipt_pruning: bool,
) -> ProviderResult<Option<PipelineTarget>>
pub fn check_consistency<Provider>( &self, provider: &Provider, has_receipt_pruning: bool, ) -> ProviderResult<Option<PipelineTarget>>
Ensures that any broken invariants which cannot be healed on the spot return a pipeline target to unwind to.
Two types of consistency checks are done for:
- When a static file fails to commit but the underlying data was changed.
- When a static file was committed, but the required database transaction was not.
For 1) it can self-heal if self.access.is_read_only()
is set to false
. Otherwise, it
will return an error.
For 2) the invariants below are checked, and if broken, might require a pipeline unwind
to heal.
For each static file segment:
- the corresponding database table should overlap or have continuity in their keys
([
TxNumber
] or [BlockNumber
]). - its highest block should match the stage checkpoint block number if it’s equal or higher than the corresponding database table last entry.
Returns a Option
of PipelineTarget::Unwind
if any healing is further required.
WARNING: No static file writer should be held before calling this function, otherwise it will deadlock.
Sourcepub fn check_segment_consistency(
&self,
segment: StaticFileSegment,
) -> ProviderResult<()>
pub fn check_segment_consistency( &self, segment: StaticFileSegment, ) -> ProviderResult<()>
Checks consistency of the latest static file segment and throws an error if at fault. Read-only.
Sourcepub fn get_highest_static_file_block(
&self,
segment: StaticFileSegment,
) -> Option<BlockNumber>
pub fn get_highest_static_file_block( &self, segment: StaticFileSegment, ) -> Option<BlockNumber>
Gets the highest static file block if it exists for a static file segment.
If there is nothing on disk for the given segment, this will return None
.
Sourcepub fn get_highest_static_file_tx(
&self,
segment: StaticFileSegment,
) -> Option<TxNumber>
pub fn get_highest_static_file_tx( &self, segment: StaticFileSegment, ) -> Option<TxNumber>
Gets the highest static file transaction.
If there is nothing on disk for the given segment, this will return None
.
Sourcepub fn get_highest_static_files(&self) -> HighestStaticFiles
pub fn get_highest_static_files(&self) -> HighestStaticFiles
Gets the highest static file block for all segments.
Sourcepub fn find_static_file<T>(
&self,
segment: StaticFileSegment,
func: impl Fn(StaticFileJarProvider<'_, N>) -> ProviderResult<Option<T>>,
) -> ProviderResult<Option<T>>
pub fn find_static_file<T>( &self, segment: StaticFileSegment, func: impl Fn(StaticFileJarProvider<'_, N>) -> ProviderResult<Option<T>>, ) -> ProviderResult<Option<T>>
Iterates through segment static_files
in reverse order, executing a function until it
returns some object. Useful for finding objects by [TxHash
] or [BlockHash
].
Sourcepub fn fetch_range_with_predicate<T, F, P>(
&self,
segment: StaticFileSegment,
range: Range<u64>,
get_fn: F,
predicate: P,
) -> ProviderResult<Vec<T>>
pub fn fetch_range_with_predicate<T, F, P>( &self, segment: StaticFileSegment, range: Range<u64>, get_fn: F, predicate: P, ) -> ProviderResult<Vec<T>>
Fetches data within a specified range across multiple static files.
This function iteratively retrieves data using get_fn
for each item in the given range.
It continues fetching until the end of the range is reached or the provided predicate
returns false.
Sourcepub fn fetch_range_iter<'a, T, F>(
&'a self,
segment: StaticFileSegment,
range: Range<u64>,
get_fn: F,
) -> ProviderResult<impl Iterator<Item = ProviderResult<T>> + 'a>
pub fn fetch_range_iter<'a, T, F>( &'a self, segment: StaticFileSegment, range: Range<u64>, get_fn: F, ) -> ProviderResult<impl Iterator<Item = ProviderResult<T>> + 'a>
Fetches data within a specified range across multiple static files.
Returns an iterator over the data
Sourcepub fn get_with_static_file_or_database<T, FS, FD>(
&self,
segment: StaticFileSegment,
number: u64,
fetch_from_static_file: FS,
fetch_from_database: FD,
) -> ProviderResult<Option<T>>
pub fn get_with_static_file_or_database<T, FS, FD>( &self, segment: StaticFileSegment, number: u64, fetch_from_static_file: FS, fetch_from_database: FD, ) -> ProviderResult<Option<T>>
Retrieves data from the database or static file, wherever it’s available.
§Arguments
segment
- The segment of the static file to check against.index_key
- Requested index key, usually a block or transaction number.fetch_from_static_file
- A closure that defines how to fetch the data from the static file provider.fetch_from_database
- A closure that defines how to fetch the data from the database when the static file doesn’t contain the required data or is not available.
Sourcepub fn get_range_with_static_file_or_database<T, P, FS, FD>(
&self,
segment: StaticFileSegment,
block_or_tx_range: Range<u64>,
fetch_from_static_file: FS,
fetch_from_database: FD,
predicate: P,
) -> ProviderResult<Vec<T>>
pub fn get_range_with_static_file_or_database<T, P, FS, FD>( &self, segment: StaticFileSegment, block_or_tx_range: Range<u64>, fetch_from_static_file: FS, fetch_from_database: FD, predicate: P, ) -> ProviderResult<Vec<T>>
Gets data within a specified range, potentially spanning different static_files
and
database.
§Arguments
segment
- The segment of the static file to query.block_range
- The range of data to fetch.fetch_from_static_file
- A function to fetch data from thestatic_file
.fetch_from_database
- A function to fetch data from the database.predicate
- A function used to evaluate each item in the fetched data. Fetching is terminated when this function returns false, thereby filtering the data based on the provided condition.
Trait Implementations§
Source§impl<N: Send + Sync> BlockBodyIndicesProvider for StaticFileProvider<N>
impl<N: Send + Sync> BlockBodyIndicesProvider for StaticFileProvider<N>
Source§fn block_body_indices(
&self,
_num: u64,
) -> ProviderResult<Option<StoredBlockBodyIndices>>
fn block_body_indices( &self, _num: u64, ) -> ProviderResult<Option<StoredBlockBodyIndices>>
Source§impl<N: NodePrimitives> BlockHashReader for StaticFileProvider<N>
impl<N: NodePrimitives> BlockHashReader for StaticFileProvider<N>
Source§fn block_hash(&self, num: u64) -> ProviderResult<Option<B256>>
fn block_hash(&self, num: u64) -> ProviderResult<Option<B256>>
None
if no block with this number
exists.Source§fn canonical_hashes_range(
&self,
start: BlockNumber,
end: BlockNumber,
) -> ProviderResult<Vec<B256>>
fn canonical_hashes_range( &self, start: BlockNumber, end: BlockNumber, ) -> ProviderResult<Vec<B256>>
Source§fn convert_block_hash(
&self,
hash_or_number: HashOrNumber,
) -> Result<Option<FixedBytes<32>>, ProviderError>
fn convert_block_hash( &self, hash_or_number: HashOrNumber, ) -> Result<Option<FixedBytes<32>>, ProviderError>
None
if no block with this number
exists.Source§impl<N: NodePrimitives> BlockNumReader for StaticFileProvider<N>
impl<N: NodePrimitives> BlockNumReader for StaticFileProvider<N>
Source§fn chain_info(&self) -> ProviderResult<ChainInfo>
fn chain_info(&self) -> ProviderResult<ChainInfo>
Source§fn best_block_number(&self) -> ProviderResult<BlockNumber>
fn best_block_number(&self) -> ProviderResult<BlockNumber>
Source§fn last_block_number(&self) -> ProviderResult<BlockNumber>
fn last_block_number(&self) -> ProviderResult<BlockNumber>
Source§fn block_number(&self, _hash: B256) -> ProviderResult<Option<BlockNumber>>
fn block_number(&self, _hash: B256) -> ProviderResult<Option<BlockNumber>>
BlockNumber
for the given hash. Returns None
if no block with this hash exists.Source§fn convert_hash_or_number(
&self,
id: HashOrNumber,
) -> Result<Option<u64>, ProviderError>
fn convert_hash_or_number( &self, id: HashOrNumber, ) -> Result<Option<u64>, ProviderError>
BlockHashOrNumber
. Returns None
if no block with
this hash exists. If the BlockHashOrNumber
is a Number
, it is returned as is.Source§fn convert_number(
&self,
id: HashOrNumber,
) -> Result<Option<FixedBytes<32>>, ProviderError>
fn convert_number( &self, id: HashOrNumber, ) -> Result<Option<FixedBytes<32>>, ProviderError>
BlockHashOrNumber
. Returns None
if no block with this
number exists. If the BlockHashOrNumber
is a Hash
, it is returned as is.Source§impl<N: FullNodePrimitives<SignedTx: Value, Receipt: Value, BlockHeader: Value>> BlockReader for StaticFileProvider<N>
impl<N: FullNodePrimitives<SignedTx: Value, Receipt: Value, BlockHeader: Value>> BlockReader for StaticFileProvider<N>
Source§fn find_block_by_hash(
&self,
_hash: B256,
_source: BlockSource,
) -> ProviderResult<Option<Self::Block>>
fn find_block_by_hash( &self, _hash: B256, _source: BlockSource, ) -> ProviderResult<Option<Self::Block>>
Source§fn block(&self, _id: BlockHashOrNumber) -> ProviderResult<Option<Self::Block>>
fn block(&self, _id: BlockHashOrNumber) -> ProviderResult<Option<Self::Block>>
Source§fn pending_block(&self) -> ProviderResult<Option<SealedBlockFor<Self::Block>>>
fn pending_block(&self) -> ProviderResult<Option<SealedBlockFor<Self::Block>>>
Source§fn pending_block_with_senders(
&self,
) -> ProviderResult<Option<SealedBlockWithSenders<Self::Block>>>
fn pending_block_with_senders( &self, ) -> ProviderResult<Option<SealedBlockWithSenders<Self::Block>>>
Source§fn pending_block_and_receipts(
&self,
) -> ProviderResult<Option<(SealedBlockFor<Self::Block>, Vec<Self::Receipt>)>>
fn pending_block_and_receipts( &self, ) -> ProviderResult<Option<(SealedBlockFor<Self::Block>, Vec<Self::Receipt>)>>
Source§fn block_with_senders(
&self,
_id: BlockHashOrNumber,
_transaction_kind: TransactionVariant,
) -> ProviderResult<Option<BlockWithSenders<Self::Block>>>
fn block_with_senders( &self, _id: BlockHashOrNumber, _transaction_kind: TransactionVariant, ) -> ProviderResult<Option<BlockWithSenders<Self::Block>>>
Source§fn sealed_block_with_senders(
&self,
_id: BlockHashOrNumber,
_transaction_kind: TransactionVariant,
) -> ProviderResult<Option<SealedBlockWithSenders<Self::Block>>>
fn sealed_block_with_senders( &self, _id: BlockHashOrNumber, _transaction_kind: TransactionVariant, ) -> ProviderResult<Option<SealedBlockWithSenders<Self::Block>>>
Source§fn block_range(
&self,
_range: RangeInclusive<BlockNumber>,
) -> ProviderResult<Vec<Self::Block>>
fn block_range( &self, _range: RangeInclusive<BlockNumber>, ) -> ProviderResult<Vec<Self::Block>>
Source§fn block_with_senders_range(
&self,
_range: RangeInclusive<BlockNumber>,
) -> ProviderResult<Vec<BlockWithSenders<Self::Block>>>
fn block_with_senders_range( &self, _range: RangeInclusive<BlockNumber>, ) -> ProviderResult<Vec<BlockWithSenders<Self::Block>>>
Source§fn sealed_block_with_senders_range(
&self,
_range: RangeInclusive<BlockNumber>,
) -> ProviderResult<Vec<SealedBlockWithSenders<Self::Block>>>
fn sealed_block_with_senders_range( &self, _range: RangeInclusive<BlockNumber>, ) -> ProviderResult<Vec<SealedBlockWithSenders<Self::Block>>>
Source§fn block_by_hash(
&self,
hash: FixedBytes<32>,
) -> Result<Option<Self::Block>, ProviderError>
fn block_by_hash( &self, hash: FixedBytes<32>, ) -> Result<Option<Self::Block>, ProviderError>
Source§fn block_by_number(
&self,
num: u64,
) -> Result<Option<Self::Block>, ProviderError>
fn block_by_number( &self, num: u64, ) -> Result<Option<Self::Block>, ProviderError>
Source§impl<N> Clone for StaticFileProvider<N>
impl<N> Clone for StaticFileProvider<N>
Source§impl<N: Debug> Debug for StaticFileProvider<N>
impl<N: Debug> Debug for StaticFileProvider<N>
Source§impl<N: NodePrimitives> Deref for StaticFileProvider<N>
impl<N: NodePrimitives> Deref for StaticFileProvider<N>
Source§impl<N: NodePrimitives<BlockHeader: Value>> HeaderProvider for StaticFileProvider<N>
impl<N: NodePrimitives<BlockHeader: Value>> HeaderProvider for StaticFileProvider<N>
Source§fn header(&self, block_hash: &BlockHash) -> ProviderResult<Option<Self::Header>>
fn header(&self, block_hash: &BlockHash) -> ProviderResult<Option<Self::Header>>
Source§fn header_by_number(
&self,
num: BlockNumber,
) -> ProviderResult<Option<Self::Header>>
fn header_by_number( &self, num: BlockNumber, ) -> ProviderResult<Option<Self::Header>>
Source§fn header_td(&self, block_hash: &BlockHash) -> ProviderResult<Option<U256>>
fn header_td(&self, block_hash: &BlockHash) -> ProviderResult<Option<U256>>
Source§fn header_td_by_number(&self, num: BlockNumber) -> ProviderResult<Option<U256>>
fn header_td_by_number(&self, num: BlockNumber) -> ProviderResult<Option<U256>>
Source§fn headers_range(
&self,
range: impl RangeBounds<BlockNumber>,
) -> ProviderResult<Vec<Self::Header>>
fn headers_range( &self, range: impl RangeBounds<BlockNumber>, ) -> ProviderResult<Vec<Self::Header>>
Source§fn sealed_header(
&self,
num: BlockNumber,
) -> ProviderResult<Option<SealedHeader<Self::Header>>>
fn sealed_header( &self, num: BlockNumber, ) -> ProviderResult<Option<SealedHeader<Self::Header>>>
Source§fn sealed_headers_while(
&self,
range: impl RangeBounds<BlockNumber>,
predicate: impl FnMut(&SealedHeader<Self::Header>) -> bool,
) -> ProviderResult<Vec<SealedHeader<Self::Header>>>
fn sealed_headers_while( &self, range: impl RangeBounds<BlockNumber>, predicate: impl FnMut(&SealedHeader<Self::Header>) -> bool, ) -> ProviderResult<Vec<SealedHeader<Self::Header>>>
predicate
returns true
or the range is exhausted.Source§fn is_known(&self, block_hash: &FixedBytes<32>) -> Result<bool, ProviderError>
fn is_known(&self, block_hash: &FixedBytes<32>) -> Result<bool, ProviderError>
Source§fn sealed_header_by_hash(
&self,
block_hash: FixedBytes<32>,
) -> Result<Option<SealedHeader<Self::Header>>, ProviderError>
fn sealed_header_by_hash( &self, block_hash: FixedBytes<32>, ) -> Result<Option<SealedHeader<Self::Header>>, ProviderError>
Source§fn header_by_hash_or_number(
&self,
hash_or_num: HashOrNumber,
) -> Result<Option<Self::Header>, ProviderError>
fn header_by_hash_or_number( &self, hash_or_num: HashOrNumber, ) -> Result<Option<Self::Header>, ProviderError>
Source§fn sealed_headers_range(
&self,
range: impl RangeBounds<u64>,
) -> Result<Vec<SealedHeader<Self::Header>>, ProviderError>
fn sealed_headers_range( &self, range: impl RangeBounds<u64>, ) -> Result<Vec<SealedHeader<Self::Header>>, ProviderError>
Source§impl<N: FullNodePrimitives<BlockHeader: Value>> OmmersProvider for StaticFileProvider<N>
impl<N: FullNodePrimitives<BlockHeader: Value>> OmmersProvider for StaticFileProvider<N>
Source§impl<N: NodePrimitives<SignedTx: Value + SignedTransaction, Receipt: Value>> ReceiptProvider for StaticFileProvider<N>
impl<N: NodePrimitives<SignedTx: Value + SignedTransaction, Receipt: Value>> ReceiptProvider for StaticFileProvider<N>
Source§fn receipt(&self, num: TxNumber) -> ProviderResult<Option<Self::Receipt>>
fn receipt(&self, num: TxNumber) -> ProviderResult<Option<Self::Receipt>>
Source§fn receipt_by_hash(&self, hash: TxHash) -> ProviderResult<Option<Self::Receipt>>
fn receipt_by_hash(&self, hash: TxHash) -> ProviderResult<Option<Self::Receipt>>
Source§fn receipts_by_block(
&self,
_block: BlockHashOrNumber,
) -> ProviderResult<Option<Vec<Self::Receipt>>>
fn receipts_by_block( &self, _block: BlockHashOrNumber, ) -> ProviderResult<Option<Vec<Self::Receipt>>>
Source§fn receipts_by_tx_range(
&self,
range: impl RangeBounds<TxNumber>,
) -> ProviderResult<Vec<Self::Receipt>>
fn receipts_by_tx_range( &self, range: impl RangeBounds<TxNumber>, ) -> ProviderResult<Vec<Self::Receipt>>
Source§impl<N: NodePrimitives> StaticFileWriter for StaticFileProvider<N>
impl<N: NodePrimitives> StaticFileWriter for StaticFileProvider<N>
Source§type Primitives = N
type Primitives = N
Source§fn get_writer(
&self,
block: BlockNumber,
segment: StaticFileSegment,
) -> ProviderResult<StaticFileProviderRWRefMut<'_, Self::Primitives>>
fn get_writer( &self, block: BlockNumber, segment: StaticFileSegment, ) -> ProviderResult<StaticFileProviderRWRefMut<'_, Self::Primitives>>
StaticFileProviderRW
of a [StaticFileSegment
].Source§fn latest_writer(
&self,
segment: StaticFileSegment,
) -> ProviderResult<StaticFileProviderRWRefMut<'_, Self::Primitives>>
fn latest_writer( &self, segment: StaticFileSegment, ) -> ProviderResult<StaticFileProviderRWRefMut<'_, Self::Primitives>>
StaticFileProviderRW
of the latest
[StaticFileSegment
].Source§fn commit(&self) -> ProviderResult<()>
fn commit(&self) -> ProviderResult<()>
StaticFileProviderRW
of all [StaticFileSegment
].Source§impl<N: NodePrimitives> StatsReader for StaticFileProvider<N>
impl<N: NodePrimitives> StatsReader for StaticFileProvider<N>
Source§fn count_entries<T: Table>(&self) -> ProviderResult<usize>
fn count_entries<T: Table>(&self) -> ProviderResult<usize>
Source§impl<N: NodePrimitives<SignedTx: Decompress + SignedTransaction>> TransactionsProvider for StaticFileProvider<N>
impl<N: NodePrimitives<SignedTx: Decompress + SignedTransaction>> TransactionsProvider for StaticFileProvider<N>
Source§type Transaction = <N as NodePrimitives>::SignedTx
type Transaction = <N as NodePrimitives>::SignedTx
Source§fn transaction_id(&self, tx_hash: TxHash) -> ProviderResult<Option<TxNumber>>
fn transaction_id(&self, tx_hash: TxHash) -> ProviderResult<Option<TxNumber>>
Source§fn transaction_by_id(
&self,
num: TxNumber,
) -> ProviderResult<Option<Self::Transaction>>
fn transaction_by_id( &self, num: TxNumber, ) -> ProviderResult<Option<Self::Transaction>>
Source§fn transaction_by_id_unhashed(
&self,
num: TxNumber,
) -> ProviderResult<Option<Self::Transaction>>
fn transaction_by_id_unhashed( &self, num: TxNumber, ) -> ProviderResult<Option<Self::Transaction>>
Source§fn transaction_by_hash(
&self,
hash: TxHash,
) -> ProviderResult<Option<Self::Transaction>>
fn transaction_by_hash( &self, hash: TxHash, ) -> ProviderResult<Option<Self::Transaction>>
Source§fn transaction_by_hash_with_meta(
&self,
_hash: TxHash,
) -> ProviderResult<Option<(Self::Transaction, TransactionMeta)>>
fn transaction_by_hash_with_meta( &self, _hash: TxHash, ) -> ProviderResult<Option<(Self::Transaction, TransactionMeta)>>
Source§fn transaction_block(
&self,
_id: TxNumber,
) -> ProviderResult<Option<BlockNumber>>
fn transaction_block( &self, _id: TxNumber, ) -> ProviderResult<Option<BlockNumber>>
Source§fn transactions_by_block(
&self,
_block_id: BlockHashOrNumber,
) -> ProviderResult<Option<Vec<Self::Transaction>>>
fn transactions_by_block( &self, _block_id: BlockHashOrNumber, ) -> ProviderResult<Option<Vec<Self::Transaction>>>
Source§fn transactions_by_block_range(
&self,
_range: impl RangeBounds<BlockNumber>,
) -> ProviderResult<Vec<Vec<Self::Transaction>>>
fn transactions_by_block_range( &self, _range: impl RangeBounds<BlockNumber>, ) -> ProviderResult<Vec<Vec<Self::Transaction>>>
Source§fn transactions_by_tx_range(
&self,
range: impl RangeBounds<TxNumber>,
) -> ProviderResult<Vec<Self::Transaction>>
fn transactions_by_tx_range( &self, range: impl RangeBounds<TxNumber>, ) -> ProviderResult<Vec<Self::Transaction>>
Source§fn senders_by_tx_range(
&self,
range: impl RangeBounds<TxNumber>,
) -> ProviderResult<Vec<Address>>
fn senders_by_tx_range( &self, range: impl RangeBounds<TxNumber>, ) -> ProviderResult<Vec<Address>>
Source§fn transaction_sender(&self, id: TxNumber) -> ProviderResult<Option<Address>>
fn transaction_sender(&self, id: TxNumber) -> ProviderResult<Option<Address>>
Source§impl<N: FullNodePrimitives<SignedTx: Value, Receipt: Value, BlockHeader: Value>> TransactionsProviderExt for StaticFileProvider<N>
impl<N: FullNodePrimitives<SignedTx: Value, Receipt: Value, BlockHeader: Value>> TransactionsProviderExt for StaticFileProvider<N>
Source§fn transaction_hashes_by_range(
&self,
tx_range: Range<TxNumber>,
) -> ProviderResult<Vec<(TxHash, TxNumber)>>
fn transaction_hashes_by_range( &self, tx_range: Range<TxNumber>, ) -> ProviderResult<Vec<(TxHash, TxNumber)>>
Source§fn transaction_range_by_block_range(
&self,
block_range: RangeInclusive<u64>,
) -> Result<RangeInclusive<u64>, ProviderError>
fn transaction_range_by_block_range( &self, block_range: RangeInclusive<u64>, ) -> Result<RangeInclusive<u64>, ProviderError>
Source§impl<N: NodePrimitives> WithdrawalsProvider for StaticFileProvider<N>
impl<N: NodePrimitives> WithdrawalsProvider for StaticFileProvider<N>
Source§fn withdrawals_by_block(
&self,
_id: BlockHashOrNumber,
_timestamp: u64,
) -> ProviderResult<Option<Withdrawals>>
fn withdrawals_by_block( &self, _id: BlockHashOrNumber, _timestamp: u64, ) -> ProviderResult<Option<Withdrawals>>
Source§fn latest_withdrawal(&self) -> ProviderResult<Option<Withdrawal>>
fn latest_withdrawal(&self) -> ProviderResult<Option<Withdrawal>>
Auto Trait Implementations§
impl<N> Freeze for StaticFileProvider<N>
impl<N> !RefUnwindSafe for StaticFileProvider<N>
impl<N> Send for StaticFileProvider<N>
impl<N> Sync for StaticFileProvider<N>
impl<N> Unpin for StaticFileProvider<N>
impl<N> !UnwindSafe for StaticFileProvider<N>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Conv for T
impl<T> Conv for T
§impl<T> FmtForward for T
impl<T> FmtForward for T
§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self
to use its Binary
implementation when Debug
-formatted.§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self
to use its Display
implementation when
Debug
-formatted.§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self
to use its LowerExp
implementation when
Debug
-formatted.§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self
to use its LowerHex
implementation when
Debug
-formatted.§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self
to use its Octal
implementation when Debug
-formatted.§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self
to use its Pointer
implementation when
Debug
-formatted.§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self
to use its UpperExp
implementation when
Debug
-formatted.§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self
to use its UpperHex
implementation when
Debug
-formatted.§fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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>
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>
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§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read more§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read more§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self
, then passes self.as_ref()
into the pipe function.§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self
, then passes self.as_mut()
into the pipe
function.§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self
, then passes self.deref()
into the pipe function.§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> Tap for T
impl<T> Tap for T
§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B>
of a value. Read more§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B>
of a value. Read more§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R>
view of a value. Read more§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R>
view of a value. Read more§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target
of a value. Read more§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target
of a value. Read more§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap()
only in debug builds, and is erased in release builds.§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut()
only in debug builds, and is erased in release
builds.§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow()
only in debug builds, and is erased in release
builds.§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref()
only in debug builds, and is erased in release
builds.§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut()
only in debug builds, and is erased in release
builds.§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref()
only in debug builds, and is erased in release
builds.§impl<T> TryConv for T
impl<T> TryConv for T
§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
impl<T> ErasedDestructor for Twhere
T: 'static,
impl<T> MaybeDebug for Twhere
T: Debug,
impl<T> MaybeSendSync for T
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 8 bytes