pub struct StaticFileProvider<N>(/* private fields */);Expand description
StaticFileProvider manages all existing StaticFileJarProvider.
“Static files” contain immutable chain history data, such as:
- transactions
- headers
- receipts
This provider type is responsible for reading and writing to static files.
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.
Watching is recommended if the read-only provider is used on a directory that an active node instance is modifying.
See also StaticFileProvider::watch_directory.
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 report_metrics(&self) -> ProviderResult<()>
pub fn report_metrics(&self) -> ProviderResult<()>
Reports metrics for the static files.
Sourcepub fn get_segment_provider(
&self,
segment: StaticFileSegment,
number: u64,
) -> ProviderResult<StaticFileJarProvider<'_, N>>
pub fn get_segment_provider( &self, segment: StaticFileSegment, number: u64, ) -> ProviderResult<StaticFileJarProvider<'_, N>>
Gets the StaticFileJarProvider of the requested segment and start index that can be
either block or transaction.
Sourcepub fn get_maybe_segment_provider(
&self,
segment: StaticFileSegment,
number: u64,
) -> ProviderResult<Option<StaticFileJarProvider<'_, N>>>
pub fn get_maybe_segment_provider( &self, segment: StaticFileSegment, number: u64, ) -> ProviderResult<Option<StaticFileJarProvider<'_, N>>>
Gets the StaticFileJarProvider of the requested segment and start index that can be
either block or transaction.
If the segment is not found, returns None.
Sourcepub fn get_segment_provider_for_block(
&self,
segment: StaticFileSegment,
block: BlockNumber,
path: Option<&Path>,
) -> ProviderResult<StaticFileJarProvider<'_, N>>
pub fn get_segment_provider_for_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_for_transaction(
&self,
segment: StaticFileSegment,
tx: TxNumber,
path: Option<&Path>,
) -> ProviderResult<StaticFileJarProvider<'_, N>>
pub fn get_segment_provider_for_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_for_range(
&self,
segment: StaticFileSegment,
fn_range: impl Fn() -> Option<SegmentRangeInclusive>,
path: Option<&Path>,
) -> ProviderResult<Option<StaticFileJarProvider<'_, N>>>
pub fn get_segment_provider_for_range( &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 get_segment_provider_for_path(
&self,
path: &Path,
) -> ProviderResult<Option<StaticFileJarProvider<'_, N>>>
pub fn get_segment_provider_for_path( &self, path: &Path, ) -> ProviderResult<Option<StaticFileJarProvider<'_, N>>>
Gets the StaticFileJarProvider of the requested path.
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_segment_below_block(
&self,
segment: StaticFileSegment,
block: BlockNumber,
) -> ProviderResult<Vec<SegmentHeader>>
pub fn delete_segment_below_block( &self, segment: StaticFileSegment, block: BlockNumber, ) -> ProviderResult<Vec<SegmentHeader>>
This handles history expiry by deleting all static files for the given segment below the given block.
For example if block is 1M and the blocks per file are 500K this will delete all individual files below 1M, so 0-499K and 500K-999K.
This will not delete the file that contains the block itself, because files can only be removed entirely.
§Safety
This method will never delete the highest static file for the segment, even if the requested block is higher than the highest block in static files. This ensures we always maintain at least one static file if any exist.
Returns a list of SegmentHeaders from the deleted jars.
Sourcepub fn delete_jar(
&self,
segment: StaticFileSegment,
block: BlockNumber,
) -> ProviderResult<SegmentHeader>
pub fn delete_jar( &self, segment: StaticFileSegment, block: BlockNumber, ) -> ProviderResult<SegmentHeader>
Given a segment and block, it deletes the jar and all files from the respective block range.
CAUTION: destructive. Deletes files on disk.
This will re-initialize the index after deletion, so all files are tracked.
Returns the SegmentHeader of the deleted jar.
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,
) -> ProviderResult<Option<PipelineTarget>>where
Provider: DBProvider + BlockReader + StageCheckpointReader + ChainSpecProvider + StorageSettingsCache,
N: NodePrimitives<Receipt: Value, BlockHeader: Value, SignedTx: Value>,
pub fn check_consistency<Provider>(
&self,
provider: &Provider,
) -> ProviderResult<Option<PipelineTarget>>where
Provider: DBProvider + BlockReader + StageCheckpointReader + ChainSpecProvider + StorageSettingsCache,
N: NodePrimitives<Receipt: Value, BlockHeader: Value, SignedTx: Value>,
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 earliest_history_height(&self) -> BlockNumber
pub fn earliest_history_height(&self) -> BlockNumber
Returns the earliest available block number that has not been expired and is still available.
This means that the highest expired block (or expired block height) is
earliest_history_height.saturating_sub(1).
Returns 0 if no history has been expired.
Sourcepub fn get_lowest_range(
&self,
segment: StaticFileSegment,
) -> Option<SegmentRangeInclusive>
pub fn get_lowest_range( &self, segment: StaticFileSegment, ) -> Option<SegmentRangeInclusive>
Gets the lowest static file’s block range 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_lowest_range_start(
&self,
segment: StaticFileSegment,
) -> Option<BlockNumber>
pub fn get_lowest_range_start( &self, segment: StaticFileSegment, ) -> Option<BlockNumber>
Gets the lowest static file’s block range start if it exists for a static file segment.
For example if the lowest static file has blocks 0-499, this will return 0.
If there is nothing on disk for the given segment, this will return None.
Sourcepub fn get_lowest_range_end(
&self,
segment: StaticFileSegment,
) -> Option<BlockNumber>
pub fn get_lowest_range_end( &self, segment: StaticFileSegment, ) -> Option<BlockNumber>
Gets the lowest static file’s block range end if it exists for a static file segment.
For example if the static file has blocks 0-499, this will return 499.
If there is nothing on disk for the given segment, this will return None.
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’s block height 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<Option<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<Option<T>>> + 'a>
Fetches data within a specified range across multiple static files.
Returns an iterator over the data. Yields None if the data for the specified number is
not found.
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_or_tx_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.
Sourcepub fn path(&self) -> &Path
Available on crate features test-utils only.
pub fn path(&self) -> &Path
test-utils only.Returns static files directory
Sourcepub fn tx_index(
&self,
segment: StaticFileSegment,
) -> Option<BTreeMap<u64, SegmentRangeInclusive>>
Available on crate features test-utils only.
pub fn tx_index( &self, segment: StaticFileSegment, ) -> Option<BTreeMap<u64, SegmentRangeInclusive>>
test-utils only.Returns transaction index
Sourcepub fn expected_block_index(
&self,
segment: StaticFileSegment,
) -> Option<BTreeMap<u64, SegmentRangeInclusive>>
Available on crate features test-utils only.
pub fn expected_block_index( &self, segment: StaticFileSegment, ) -> Option<BTreeMap<u64, SegmentRangeInclusive>>
test-utils only.Returns expected block index
Trait Implementations§
Source§impl<N: NodePrimitives> BlockBodyIndicesProvider for StaticFileProvider<N>
impl<N: NodePrimitives> 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§fn block_body_indices_range(
&self,
_range: RangeInclusive<BlockNumber>,
) -> ProviderResult<Vec<StoredBlockBodyIndices>>
fn block_body_indices_range( &self, _range: RangeInclusive<BlockNumber>, ) -> ProviderResult<Vec<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>>
§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.§fn earliest_block_number(&self) -> Result<u64, ProviderError>
fn earliest_block_number(&self) -> Result<u64, ProviderError>
§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.§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: NodePrimitives<SignedTx: Value, Receipt: Value, BlockHeader: Value>> BlockReader for StaticFileProvider<N>
impl<N: NodePrimitives<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<RecoveredBlock<Self::Block>>>
fn pending_block(&self) -> ProviderResult<Option<RecoveredBlock<Self::Block>>>
Source§fn pending_block_and_receipts(
&self,
) -> ProviderResult<Option<(RecoveredBlock<Self::Block>, Vec<Self::Receipt>)>>
fn pending_block_and_receipts( &self, ) -> ProviderResult<Option<(RecoveredBlock<Self::Block>, Vec<Self::Receipt>)>>
Source§fn recovered_block(
&self,
_id: BlockHashOrNumber,
_transaction_kind: TransactionVariant,
) -> ProviderResult<Option<RecoveredBlock<Self::Block>>>
fn recovered_block( &self, _id: BlockHashOrNumber, _transaction_kind: TransactionVariant, ) -> ProviderResult<Option<RecoveredBlock<Self::Block>>>
Source§fn sealed_block_with_senders(
&self,
_id: BlockHashOrNumber,
_transaction_kind: TransactionVariant,
) -> ProviderResult<Option<RecoveredBlock<Self::Block>>>
fn sealed_block_with_senders( &self, _id: BlockHashOrNumber, _transaction_kind: TransactionVariant, ) -> ProviderResult<Option<RecoveredBlock<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<RecoveredBlock<Self::Block>>>
fn block_with_senders_range( &self, _range: RangeInclusive<BlockNumber>, ) -> ProviderResult<Vec<RecoveredBlock<Self::Block>>>
Source§fn recovered_block_range(
&self,
_range: RangeInclusive<BlockNumber>,
) -> ProviderResult<Vec<RecoveredBlock<Self::Block>>>
fn recovered_block_range( &self, _range: RangeInclusive<BlockNumber>, ) -> ProviderResult<Vec<RecoveredBlock<Self::Block>>>
Source§fn block_by_transaction_id(
&self,
_id: TxNumber,
) -> ProviderResult<Option<BlockNumber>>
fn block_by_transaction_id( &self, _id: TxNumber, ) -> ProviderResult<Option<BlockNumber>>
§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>
§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 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.§fn is_known(&self, block_hash: FixedBytes<32>) -> Result<bool, ProviderError>
fn is_known(&self, block_hash: FixedBytes<32>) -> Result<bool, ProviderError>
§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>
§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>
§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: 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§fn receipts_by_block_range(
&self,
_block_range: RangeInclusive<BlockNumber>,
) -> ProviderResult<Vec<Vec<Self::Receipt>>>
fn receipts_by_block_range( &self, _block_range: RangeInclusive<BlockNumber>, ) -> ProviderResult<Vec<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§fn has_unwind_queued(&self) -> bool
fn has_unwind_queued(&self) -> bool
true if the static file provider has unwind queued.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 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: NodePrimitives<SignedTx: Value, Receipt: Value, BlockHeader: Value>> TransactionsProviderExt for StaticFileProvider<N>
impl<N: NodePrimitives<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)>>
§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>
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<TxEnv, T> FromRecoveredTx<&T> for TxEnvwhere
TxEnv: FromRecoveredTx<T>,
impl<TxEnv, T> FromRecoveredTx<&T> for TxEnvwhere
TxEnv: FromRecoveredTx<T>,
§fn from_recovered_tx(tx: &&T, sender: Address) -> TxEnv
fn from_recovered_tx(tx: &&T, sender: Address) -> TxEnv
TxEnv] from a transaction and a sender address.§impl<TxEnv, T> FromTxWithEncoded<&T> for TxEnvwhere
TxEnv: FromTxWithEncoded<T>,
impl<TxEnv, T> FromTxWithEncoded<&T> for TxEnvwhere
TxEnv: FromTxWithEncoded<T>,
§fn from_encoded_tx(tx: &&T, sender: Address, encoded: Bytes) -> TxEnv
fn from_encoded_tx(tx: &&T, sender: Address, encoded: Bytes) -> TxEnv
TxEnv] from a transaction, its sender, and encoded transaction bytes.§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
§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> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T in a tonic::Request§impl<L> LayerExt<L> for L
impl<L> LayerExt<L> for L
§fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
Layered].§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> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
§impl<T> ServiceExt for T
impl<T> ServiceExt for T
§fn propagate_header(self, header: HeaderName) -> PropagateHeader<Self>where
Self: Sized,
fn propagate_header(self, header: HeaderName) -> PropagateHeader<Self>where
Self: Sized,
propagate-header only.§fn add_extension<T>(self, value: T) -> AddExtension<Self, T>where
Self: Sized,
fn add_extension<T>(self, value: T) -> AddExtension<Self, T>where
Self: Sized,
add-extension only.§fn map_request_body<F>(self, f: F) -> MapRequestBody<Self, F>where
Self: Sized,
fn map_request_body<F>(self, f: F) -> MapRequestBody<Self, F>where
Self: Sized,
map-request-body only.§fn map_response_body<F>(self, f: F) -> MapResponseBody<Self, F>where
Self: Sized,
fn map_response_body<F>(self, f: F) -> MapResponseBody<Self, F>where
Self: Sized,
map-response-body only.§fn compression(self) -> Compression<Self>where
Self: Sized,
fn compression(self) -> Compression<Self>where
Self: Sized,
compression-br or compression-deflate or compression-gzip or compression-zstd only.§fn decompression(self) -> Decompression<Self>where
Self: Sized,
fn decompression(self) -> Decompression<Self>where
Self: Sized,
decompression-br or decompression-deflate or decompression-gzip or decompression-zstd only.§fn trace_for_http(self) -> Trace<Self, SharedClassifier<ServerErrorsAsFailures>>where
Self: Sized,
fn trace_for_http(self) -> Trace<Self, SharedClassifier<ServerErrorsAsFailures>>where
Self: Sized,
trace only.§fn trace_for_grpc(self) -> Trace<Self, SharedClassifier<GrpcErrorsAsFailures>>where
Self: Sized,
fn trace_for_grpc(self) -> Trace<Self, SharedClassifier<GrpcErrorsAsFailures>>where
Self: Sized,
trace only.§fn follow_redirects(self) -> FollowRedirect<Self>where
Self: Sized,
fn follow_redirects(self) -> FollowRedirect<Self>where
Self: Sized,
follow-redirect only.§fn sensitive_headers(
self,
headers: impl IntoIterator<Item = HeaderName>,
) -> SetSensitiveRequestHeaders<SetSensitiveResponseHeaders<Self>>where
Self: Sized,
fn sensitive_headers(
self,
headers: impl IntoIterator<Item = HeaderName>,
) -> SetSensitiveRequestHeaders<SetSensitiveResponseHeaders<Self>>where
Self: Sized,
sensitive-headers only.§fn sensitive_request_headers(
self,
headers: impl IntoIterator<Item = HeaderName>,
) -> SetSensitiveRequestHeaders<Self>where
Self: Sized,
fn sensitive_request_headers(
self,
headers: impl IntoIterator<Item = HeaderName>,
) -> SetSensitiveRequestHeaders<Self>where
Self: Sized,
sensitive-headers only.§fn sensitive_response_headers(
self,
headers: impl IntoIterator<Item = HeaderName>,
) -> SetSensitiveResponseHeaders<Self>where
Self: Sized,
fn sensitive_response_headers(
self,
headers: impl IntoIterator<Item = HeaderName>,
) -> SetSensitiveResponseHeaders<Self>where
Self: Sized,
sensitive-headers only.§fn override_request_header<M>(
self,
header_name: HeaderName,
make: M,
) -> SetRequestHeader<Self, M>where
Self: Sized,
fn override_request_header<M>(
self,
header_name: HeaderName,
make: M,
) -> SetRequestHeader<Self, M>where
Self: Sized,
set-header only.§fn append_request_header<M>(
self,
header_name: HeaderName,
make: M,
) -> SetRequestHeader<Self, M>where
Self: Sized,
fn append_request_header<M>(
self,
header_name: HeaderName,
make: M,
) -> SetRequestHeader<Self, M>where
Self: Sized,
set-header only.§fn insert_request_header_if_not_present<M>(
self,
header_name: HeaderName,
make: M,
) -> SetRequestHeader<Self, M>where
Self: Sized,
fn insert_request_header_if_not_present<M>(
self,
header_name: HeaderName,
make: M,
) -> SetRequestHeader<Self, M>where
Self: Sized,
set-header only.§fn override_response_header<M>(
self,
header_name: HeaderName,
make: M,
) -> SetResponseHeader<Self, M>where
Self: Sized,
fn override_response_header<M>(
self,
header_name: HeaderName,
make: M,
) -> SetResponseHeader<Self, M>where
Self: Sized,
set-header only.§fn append_response_header<M>(
self,
header_name: HeaderName,
make: M,
) -> SetResponseHeader<Self, M>where
Self: Sized,
fn append_response_header<M>(
self,
header_name: HeaderName,
make: M,
) -> SetResponseHeader<Self, M>where
Self: Sized,
set-header only.§fn insert_response_header_if_not_present<M>(
self,
header_name: HeaderName,
make: M,
) -> SetResponseHeader<Self, M>where
Self: Sized,
fn insert_response_header_if_not_present<M>(
self,
header_name: HeaderName,
make: M,
) -> SetResponseHeader<Self, M>where
Self: Sized,
set-header only.§fn set_request_id<M>(
self,
header_name: HeaderName,
make_request_id: M,
) -> SetRequestId<Self, M>where
Self: Sized,
M: MakeRequestId,
fn set_request_id<M>(
self,
header_name: HeaderName,
make_request_id: M,
) -> SetRequestId<Self, M>where
Self: Sized,
M: MakeRequestId,
request-id only.§fn set_x_request_id<M>(self, make_request_id: M) -> SetRequestId<Self, M>where
Self: Sized,
M: MakeRequestId,
fn set_x_request_id<M>(self, make_request_id: M) -> SetRequestId<Self, M>where
Self: Sized,
M: MakeRequestId,
request-id only.x-request-id as the header name. Read more§fn propagate_request_id(
self,
header_name: HeaderName,
) -> PropagateRequestId<Self>where
Self: Sized,
fn propagate_request_id(
self,
header_name: HeaderName,
) -> PropagateRequestId<Self>where
Self: Sized,
request-id only.§fn propagate_x_request_id(self) -> PropagateRequestId<Self>where
Self: Sized,
fn propagate_x_request_id(self) -> PropagateRequestId<Self>where
Self: Sized,
request-id only.x-request-id as the header name. Read more§fn catch_panic(self) -> CatchPanic<Self, DefaultResponseForPanic>where
Self: Sized,
fn catch_panic(self) -> CatchPanic<Self, DefaultResponseForPanic>where
Self: Sized,
catch-panic only.500 Internal Server responses. Read more§fn request_body_limit(self, limit: usize) -> RequestBodyLimit<Self>where
Self: Sized,
fn request_body_limit(self, limit: usize) -> RequestBodyLimit<Self>where
Self: Sized,
limit only.413 Payload Too Large responses. Read more§fn trim_trailing_slash(self) -> NormalizePath<Self>where
Self: Sized,
fn trim_trailing_slash(self) -> NormalizePath<Self>where
Self: Sized,
normalize-path only.§fn append_trailing_slash(self) -> NormalizePath<Self>where
Self: Sized,
fn append_trailing_slash(self) -> NormalizePath<Self>where
Self: Sized,
normalize-path only.§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,
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