pub struct StaticFileProvider<N>(/* private fields */);provider only.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> StaticFileProvider<N>where
N: NodePrimitives,
impl<N> StaticFileProvider<N>where
N: NodePrimitives,
Sourcepub fn read_only(
path: impl AsRef<Path>,
watch_directory: bool,
) -> Result<StaticFileProvider<N>, ProviderError>
pub fn read_only( path: impl AsRef<Path>, watch_directory: bool, ) -> Result<StaticFileProvider<N>, ProviderError>
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>,
) -> Result<StaticFileProvider<N>, ProviderError>
pub fn read_write( path: impl AsRef<Path>, ) -> Result<StaticFileProvider<N>, ProviderError>
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> StaticFileProvider<N>where
N: NodePrimitives,
impl<N> StaticFileProvider<N>where
N: NodePrimitives,
Sourcepub fn with_custom_blocks_per_file(
self,
blocks_per_file: u64,
) -> StaticFileProvider<N>
pub fn with_custom_blocks_per_file( self, blocks_per_file: u64, ) -> StaticFileProvider<N>
Set a custom number of blocks per file.
Sourcepub fn with_metrics(self) -> StaticFileProvider<N>
pub fn with_metrics(self) -> StaticFileProvider<N>
Enables metrics on the StaticFileProvider.
Sourcepub fn report_metrics(&self) -> Result<(), ProviderError>
pub fn report_metrics(&self) -> Result<(), ProviderError>
Reports metrics for the static files.
Sourcepub fn get_segment_provider_from_block(
&self,
segment: StaticFileSegment,
block: u64,
path: Option<&Path>,
) -> Result<StaticFileJarProvider<'_, N>, ProviderError>
pub fn get_segment_provider_from_block( &self, segment: StaticFileSegment, block: u64, path: Option<&Path>, ) -> Result<StaticFileJarProvider<'_, N>, ProviderError>
Gets the StaticFileJarProvider of the requested segment and block.
Sourcepub fn get_segment_provider_from_transaction(
&self,
segment: StaticFileSegment,
tx: u64,
path: Option<&Path>,
) -> Result<StaticFileJarProvider<'_, N>, ProviderError>
pub fn get_segment_provider_from_transaction( &self, segment: StaticFileSegment, tx: u64, path: Option<&Path>, ) -> Result<StaticFileJarProvider<'_, N>, ProviderError>
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>,
) -> Result<Option<StaticFileJarProvider<'_, N>>, ProviderError>
pub fn get_segment_provider( &self, segment: StaticFileSegment, fn_range: impl Fn() -> Option<SegmentRangeInclusive>, path: Option<&Path>, ) -> Result<Option<StaticFileJarProvider<'_, N>>, ProviderError>
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: u64,
)
pub fn remove_cached_provider( &self, segment: StaticFileSegment, fixed_block_range_end: u64, )
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: u64,
) -> Result<Vec<SegmentHeader>, ProviderError>
pub fn delete_segment_below_block( &self, segment: StaticFileSegment, block: u64, ) -> Result<Vec<SegmentHeader>, ProviderError>
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: u64,
) -> Result<SegmentHeader, ProviderError>
pub fn delete_jar( &self, segment: StaticFileSegment, block: u64, ) -> Result<SegmentHeader, ProviderError>
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<u64>,
) -> Result<(), ProviderError>
pub fn update_index( &self, segment: StaticFileSegment, segment_max_block: Option<u64>, ) -> Result<(), ProviderError>
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) -> Result<(), ProviderError>
pub fn initialize_index(&self) -> Result<(), ProviderError>
Initializes the inner transaction and block index
Sourcepub fn check_consistency<Provider>(
&self,
provider: &Provider,
has_receipt_pruning: bool,
) -> Result<Option<PipelineTarget>, ProviderError>where
Provider: DBProvider + BlockReader + StageCheckpointReader + ChainSpecProvider,
N: NodePrimitives,
<N as NodePrimitives>::Receipt: Value,
<N as NodePrimitives>::BlockHeader: Value,
<N as NodePrimitives>::SignedTx: Value,
pub fn check_consistency<Provider>(
&self,
provider: &Provider,
has_receipt_pruning: bool,
) -> Result<Option<PipelineTarget>, ProviderError>where
Provider: DBProvider + BlockReader + StageCheckpointReader + ChainSpecProvider,
N: NodePrimitives,
<N as NodePrimitives>::Receipt: Value,
<N as NodePrimitives>::BlockHeader: Value,
<N as NodePrimitives>::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
(
TxNumberorBlockNumber). - 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,
) -> Result<(), ProviderError>
pub fn check_segment_consistency( &self, segment: StaticFileSegment, ) -> Result<(), ProviderError>
Checks consistency of the latest static file segment and throws an error if at fault. Read-only.
Sourcepub fn earliest_history_height(&self) -> u64
pub fn earliest_history_height(&self) -> u64
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_transaction_static_file_block(&self) -> Option<u64>
pub fn get_lowest_transaction_static_file_block(&self) -> Option<u64>
Gets the lowest transaction static file block if it exists.
For example if the transactions 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_lowest_static_file_block(
&self,
segment: StaticFileSegment,
) -> Option<u64>
pub fn get_lowest_static_file_block( &self, segment: StaticFileSegment, ) -> Option<u64>
Gets the lowest static file’s block height 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_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_highest_static_file_block(
&self,
segment: StaticFileSegment,
) -> Option<u64>
pub fn get_highest_static_file_block( &self, segment: StaticFileSegment, ) -> Option<u64>
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<u64>
pub fn get_highest_static_file_tx( &self, segment: StaticFileSegment, ) -> Option<u64>
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>) -> Result<Option<T>, ProviderError>,
) -> Result<Option<T>, ProviderError>
pub fn find_static_file<T>( &self, segment: StaticFileSegment, func: impl Fn(StaticFileJarProvider<'_, N>) -> Result<Option<T>, ProviderError>, ) -> Result<Option<T>, ProviderError>
Sourcepub fn fetch_range_with_predicate<T, F, P>(
&self,
segment: StaticFileSegment,
range: Range<u64>,
get_fn: F,
predicate: P,
) -> Result<Vec<T>, ProviderError>where
F: FnMut(&mut StaticFileCursor<'_>, u64) -> Result<Option<T>, ProviderError>,
P: FnMut(&T) -> bool,
pub fn fetch_range_with_predicate<T, F, P>(
&self,
segment: StaticFileSegment,
range: Range<u64>,
get_fn: F,
predicate: P,
) -> Result<Vec<T>, ProviderError>where
F: FnMut(&mut StaticFileCursor<'_>, u64) -> Result<Option<T>, ProviderError>,
P: FnMut(&T) -> bool,
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,
) -> Result<impl Iterator<Item = Result<T, ProviderError>> + 'a, ProviderError>
pub fn fetch_range_iter<'a, T, F>( &'a self, segment: StaticFileSegment, range: Range<u64>, get_fn: F, ) -> Result<impl Iterator<Item = Result<T, ProviderError>> + 'a, ProviderError>
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,
) -> Result<Option<T>, ProviderError>where
FS: Fn(&StaticFileProvider<N>) -> Result<Option<T>, ProviderError>,
FD: Fn() -> Result<Option<T>, ProviderError>,
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,
) -> Result<Option<T>, ProviderError>where
FS: Fn(&StaticFileProvider<N>) -> Result<Option<T>, ProviderError>,
FD: Fn() -> Result<Option<T>, ProviderError>,
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,
) -> Result<Vec<T>, ProviderError>
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, ) -> Result<Vec<T>, ProviderError>
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.
Sourcepub fn tx_index(
&self,
) -> &RwLock<RawRwLock, HashMap<StaticFileSegment, BTreeMap<u64, SegmentRangeInclusive>>>
pub fn tx_index( &self, ) -> &RwLock<RawRwLock, HashMap<StaticFileSegment, BTreeMap<u64, SegmentRangeInclusive>>>
Returns static_files transaction index
Trait Implementations§
Source§impl<N> BlockBodyIndicesProvider for StaticFileProvider<N>where
N: NodePrimitives,
impl<N> BlockBodyIndicesProvider for StaticFileProvider<N>where
N: NodePrimitives,
Source§fn block_body_indices(
&self,
_num: u64,
) -> Result<Option<StoredBlockBodyIndices>, ProviderError>
fn block_body_indices( &self, _num: u64, ) -> Result<Option<StoredBlockBodyIndices>, ProviderError>
Source§fn block_body_indices_range(
&self,
_range: RangeInclusive<u64>,
) -> Result<Vec<StoredBlockBodyIndices>, ProviderError>
fn block_body_indices_range( &self, _range: RangeInclusive<u64>, ) -> Result<Vec<StoredBlockBodyIndices>, ProviderError>
Source§impl<N> BlockHashReader for StaticFileProvider<N>where
N: NodePrimitives,
impl<N> BlockHashReader for StaticFileProvider<N>where
N: NodePrimitives,
Source§fn block_hash(&self, num: u64) -> Result<Option<FixedBytes<32>>, ProviderError>
fn block_hash(&self, num: u64) -> Result<Option<FixedBytes<32>>, ProviderError>
None if no block with this number
exists.Source§fn canonical_hashes_range(
&self,
start: u64,
end: u64,
) -> Result<Vec<FixedBytes<32>>, ProviderError>
fn canonical_hashes_range( &self, start: u64, end: u64, ) -> Result<Vec<FixedBytes<32>>, ProviderError>
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> BlockNumReader for StaticFileProvider<N>where
N: NodePrimitives,
impl<N> BlockNumReader for StaticFileProvider<N>where
N: NodePrimitives,
Source§fn chain_info(&self) -> Result<ChainInfo, ProviderError>
fn chain_info(&self) -> Result<ChainInfo, ProviderError>
Source§fn best_block_number(&self) -> Result<u64, ProviderError>
fn best_block_number(&self) -> Result<u64, ProviderError>
Source§fn last_block_number(&self) -> Result<u64, ProviderError>
fn last_block_number(&self) -> Result<u64, ProviderError>
Source§fn block_number(
&self,
_hash: FixedBytes<32>,
) -> Result<Option<u64>, ProviderError>
fn block_number( &self, _hash: FixedBytes<32>, ) -> Result<Option<u64>, ProviderError>
BlockNumber for the given hash. Returns None if no block with this hash exists.Source§fn earliest_block_number(&self) -> Result<u64, ProviderError>
fn earliest_block_number(&self) -> Result<u64, ProviderError>
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> BlockReader for StaticFileProvider<N>where
N: NodePrimitives,
<N as NodePrimitives>::SignedTx: Value,
<N as NodePrimitives>::Receipt: Value,
<N as NodePrimitives>::BlockHeader: Value,
impl<N> BlockReader for StaticFileProvider<N>where
N: NodePrimitives,
<N as NodePrimitives>::SignedTx: Value,
<N as NodePrimitives>::Receipt: Value,
<N as NodePrimitives>::BlockHeader: Value,
Source§type Block = <N as NodePrimitives>::Block
type Block = <N as NodePrimitives>::Block
Source§fn find_block_by_hash(
&self,
_hash: FixedBytes<32>,
_source: BlockSource,
) -> Result<Option<<StaticFileProvider<N> as BlockReader>::Block>, ProviderError>
fn find_block_by_hash( &self, _hash: FixedBytes<32>, _source: BlockSource, ) -> Result<Option<<StaticFileProvider<N> as BlockReader>::Block>, ProviderError>
Source§fn block(
&self,
_id: HashOrNumber,
) -> Result<Option<<StaticFileProvider<N> as BlockReader>::Block>, ProviderError>
fn block( &self, _id: HashOrNumber, ) -> Result<Option<<StaticFileProvider<N> as BlockReader>::Block>, ProviderError>
Source§fn pending_block(
&self,
) -> Result<Option<RecoveredBlock<<StaticFileProvider<N> as BlockReader>::Block>>, ProviderError>
fn pending_block( &self, ) -> Result<Option<RecoveredBlock<<StaticFileProvider<N> as BlockReader>::Block>>, ProviderError>
Source§fn pending_block_and_receipts(
&self,
) -> Result<Option<(RecoveredBlock<<StaticFileProvider<N> as BlockReader>::Block>, Vec<<StaticFileProvider<N> as ReceiptProvider>::Receipt>)>, ProviderError>
fn pending_block_and_receipts( &self, ) -> Result<Option<(RecoveredBlock<<StaticFileProvider<N> as BlockReader>::Block>, Vec<<StaticFileProvider<N> as ReceiptProvider>::Receipt>)>, ProviderError>
Source§fn recovered_block(
&self,
_id: HashOrNumber,
_transaction_kind: TransactionVariant,
) -> Result<Option<RecoveredBlock<<StaticFileProvider<N> as BlockReader>::Block>>, ProviderError>
fn recovered_block( &self, _id: HashOrNumber, _transaction_kind: TransactionVariant, ) -> Result<Option<RecoveredBlock<<StaticFileProvider<N> as BlockReader>::Block>>, ProviderError>
Source§fn sealed_block_with_senders(
&self,
_id: HashOrNumber,
_transaction_kind: TransactionVariant,
) -> Result<Option<RecoveredBlock<<StaticFileProvider<N> as BlockReader>::Block>>, ProviderError>
fn sealed_block_with_senders( &self, _id: HashOrNumber, _transaction_kind: TransactionVariant, ) -> Result<Option<RecoveredBlock<<StaticFileProvider<N> as BlockReader>::Block>>, ProviderError>
Source§fn block_range(
&self,
_range: RangeInclusive<u64>,
) -> Result<Vec<<StaticFileProvider<N> as BlockReader>::Block>, ProviderError>
fn block_range( &self, _range: RangeInclusive<u64>, ) -> Result<Vec<<StaticFileProvider<N> as BlockReader>::Block>, ProviderError>
Source§fn block_with_senders_range(
&self,
_range: RangeInclusive<u64>,
) -> Result<Vec<RecoveredBlock<<StaticFileProvider<N> as BlockReader>::Block>>, ProviderError>
fn block_with_senders_range( &self, _range: RangeInclusive<u64>, ) -> Result<Vec<RecoveredBlock<<StaticFileProvider<N> as BlockReader>::Block>>, ProviderError>
Source§fn recovered_block_range(
&self,
_range: RangeInclusive<u64>,
) -> Result<Vec<RecoveredBlock<<StaticFileProvider<N> as BlockReader>::Block>>, ProviderError>
fn recovered_block_range( &self, _range: RangeInclusive<u64>, ) -> Result<Vec<RecoveredBlock<<StaticFileProvider<N> as BlockReader>::Block>>, ProviderError>
Source§fn block_by_transaction_id(
&self,
_id: u64,
) -> Result<Option<u64>, ProviderError>
fn block_by_transaction_id( &self, _id: u64, ) -> Result<Option<u64>, ProviderError>
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§fn clone(&self) -> StaticFileProvider<N>
fn clone(&self) -> StaticFileProvider<N>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl<N> Debug for StaticFileProvider<N>where
N: Debug,
impl<N> Debug for StaticFileProvider<N>where
N: Debug,
Source§impl<N> Deref for StaticFileProvider<N>where
N: NodePrimitives,
impl<N> Deref for StaticFileProvider<N>where
N: NodePrimitives,
Source§impl<N> HeaderProvider for StaticFileProvider<N>
impl<N> HeaderProvider for StaticFileProvider<N>
Source§type Header = <N as NodePrimitives>::BlockHeader
type Header = <N as NodePrimitives>::BlockHeader
Source§fn header(
&self,
block_hash: FixedBytes<32>,
) -> Result<Option<<StaticFileProvider<N> as HeaderProvider>::Header>, ProviderError>
fn header( &self, block_hash: FixedBytes<32>, ) -> Result<Option<<StaticFileProvider<N> as HeaderProvider>::Header>, ProviderError>
Source§fn header_by_number(
&self,
num: u64,
) -> Result<Option<<StaticFileProvider<N> as HeaderProvider>::Header>, ProviderError>
fn header_by_number( &self, num: u64, ) -> Result<Option<<StaticFileProvider<N> as HeaderProvider>::Header>, ProviderError>
Source§fn headers_range(
&self,
range: impl RangeBounds<u64>,
) -> Result<Vec<<StaticFileProvider<N> as HeaderProvider>::Header>, ProviderError>
fn headers_range( &self, range: impl RangeBounds<u64>, ) -> Result<Vec<<StaticFileProvider<N> as HeaderProvider>::Header>, ProviderError>
Source§fn sealed_header(
&self,
num: u64,
) -> Result<Option<SealedHeader<<StaticFileProvider<N> as HeaderProvider>::Header>>, ProviderError>
fn sealed_header( &self, num: u64, ) -> Result<Option<SealedHeader<<StaticFileProvider<N> as HeaderProvider>::Header>>, ProviderError>
Source§fn sealed_headers_while(
&self,
range: impl RangeBounds<u64>,
predicate: impl FnMut(&SealedHeader<<StaticFileProvider<N> as HeaderProvider>::Header>) -> bool,
) -> Result<Vec<SealedHeader<<StaticFileProvider<N> as HeaderProvider>::Header>>, ProviderError>
fn sealed_headers_while( &self, range: impl RangeBounds<u64>, predicate: impl FnMut(&SealedHeader<<StaticFileProvider<N> as HeaderProvider>::Header>) -> bool, ) -> Result<Vec<SealedHeader<<StaticFileProvider<N> as HeaderProvider>::Header>>, ProviderError>
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> ReceiptProvider for StaticFileProvider<N>where
N: NodePrimitives,
<N as NodePrimitives>::SignedTx: Value + SignedTransaction,
<N as NodePrimitives>::Receipt: Value,
impl<N> ReceiptProvider for StaticFileProvider<N>where
N: NodePrimitives,
<N as NodePrimitives>::SignedTx: Value + SignedTransaction,
<N as NodePrimitives>::Receipt: Value,
Source§type Receipt = <N as NodePrimitives>::Receipt
type Receipt = <N as NodePrimitives>::Receipt
Source§fn receipt(
&self,
num: u64,
) -> Result<Option<<StaticFileProvider<N> as ReceiptProvider>::Receipt>, ProviderError>
fn receipt( &self, num: u64, ) -> Result<Option<<StaticFileProvider<N> as ReceiptProvider>::Receipt>, ProviderError>
Source§fn receipt_by_hash(
&self,
hash: FixedBytes<32>,
) -> Result<Option<<StaticFileProvider<N> as ReceiptProvider>::Receipt>, ProviderError>
fn receipt_by_hash( &self, hash: FixedBytes<32>, ) -> Result<Option<<StaticFileProvider<N> as ReceiptProvider>::Receipt>, ProviderError>
Source§fn receipts_by_block(
&self,
_block: HashOrNumber,
) -> Result<Option<Vec<<StaticFileProvider<N> as ReceiptProvider>::Receipt>>, ProviderError>
fn receipts_by_block( &self, _block: HashOrNumber, ) -> Result<Option<Vec<<StaticFileProvider<N> as ReceiptProvider>::Receipt>>, ProviderError>
Source§fn receipts_by_tx_range(
&self,
range: impl RangeBounds<u64>,
) -> Result<Vec<<StaticFileProvider<N> as ReceiptProvider>::Receipt>, ProviderError>
fn receipts_by_tx_range( &self, range: impl RangeBounds<u64>, ) -> Result<Vec<<StaticFileProvider<N> as ReceiptProvider>::Receipt>, ProviderError>
Source§fn receipts_by_block_range(
&self,
_block_range: RangeInclusive<u64>,
) -> Result<Vec<Vec<<StaticFileProvider<N> as ReceiptProvider>::Receipt>>, ProviderError>
fn receipts_by_block_range( &self, _block_range: RangeInclusive<u64>, ) -> Result<Vec<Vec<<StaticFileProvider<N> as ReceiptProvider>::Receipt>>, ProviderError>
Source§impl<N> StaticFileWriter for StaticFileProvider<N>where
N: NodePrimitives,
impl<N> StaticFileWriter for StaticFileProvider<N>where
N: NodePrimitives,
Source§type Primitives = N
type Primitives = N
Source§fn get_writer(
&self,
block: u64,
segment: StaticFileSegment,
) -> Result<StaticFileProviderRWRefMut<'_, <StaticFileProvider<N> as StaticFileWriter>::Primitives>, ProviderError>
fn get_writer( &self, block: u64, segment: StaticFileSegment, ) -> Result<StaticFileProviderRWRefMut<'_, <StaticFileProvider<N> as StaticFileWriter>::Primitives>, ProviderError>
StaticFileProviderRW of a StaticFileSegment.Source§fn latest_writer(
&self,
segment: StaticFileSegment,
) -> Result<StaticFileProviderRWRefMut<'_, <StaticFileProvider<N> as StaticFileWriter>::Primitives>, ProviderError>
fn latest_writer( &self, segment: StaticFileSegment, ) -> Result<StaticFileProviderRWRefMut<'_, <StaticFileProvider<N> as StaticFileWriter>::Primitives>, ProviderError>
StaticFileProviderRW of the latest
StaticFileSegment.Source§fn commit(&self) -> Result<(), ProviderError>
fn commit(&self) -> Result<(), ProviderError>
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> StatsReader for StaticFileProvider<N>where
N: NodePrimitives,
impl<N> StatsReader for StaticFileProvider<N>where
N: NodePrimitives,
Source§fn count_entries<T>(&self) -> Result<usize, ProviderError>where
T: Table,
fn count_entries<T>(&self) -> Result<usize, ProviderError>where
T: Table,
Source§impl<N> TransactionsProvider for StaticFileProvider<N>
impl<N> TransactionsProvider for StaticFileProvider<N>
Source§type Transaction = <N as NodePrimitives>::SignedTx
type Transaction = <N as NodePrimitives>::SignedTx
Source§fn transaction_id(
&self,
tx_hash: FixedBytes<32>,
) -> Result<Option<u64>, ProviderError>
fn transaction_id( &self, tx_hash: FixedBytes<32>, ) -> Result<Option<u64>, ProviderError>
Source§fn transaction_by_id(
&self,
num: u64,
) -> Result<Option<<StaticFileProvider<N> as TransactionsProvider>::Transaction>, ProviderError>
fn transaction_by_id( &self, num: u64, ) -> Result<Option<<StaticFileProvider<N> as TransactionsProvider>::Transaction>, ProviderError>
Source§fn transaction_by_id_unhashed(
&self,
num: u64,
) -> Result<Option<<StaticFileProvider<N> as TransactionsProvider>::Transaction>, ProviderError>
fn transaction_by_id_unhashed( &self, num: u64, ) -> Result<Option<<StaticFileProvider<N> as TransactionsProvider>::Transaction>, ProviderError>
Source§fn transaction_by_hash(
&self,
hash: FixedBytes<32>,
) -> Result<Option<<StaticFileProvider<N> as TransactionsProvider>::Transaction>, ProviderError>
fn transaction_by_hash( &self, hash: FixedBytes<32>, ) -> Result<Option<<StaticFileProvider<N> as TransactionsProvider>::Transaction>, ProviderError>
Source§fn transaction_by_hash_with_meta(
&self,
_hash: FixedBytes<32>,
) -> Result<Option<(<StaticFileProvider<N> as TransactionsProvider>::Transaction, TransactionMeta)>, ProviderError>
fn transaction_by_hash_with_meta( &self, _hash: FixedBytes<32>, ) -> Result<Option<(<StaticFileProvider<N> as TransactionsProvider>::Transaction, TransactionMeta)>, ProviderError>
Source§fn transaction_block(&self, _id: u64) -> Result<Option<u64>, ProviderError>
fn transaction_block(&self, _id: u64) -> Result<Option<u64>, ProviderError>
Source§fn transactions_by_block(
&self,
_block_id: HashOrNumber,
) -> Result<Option<Vec<<StaticFileProvider<N> as TransactionsProvider>::Transaction>>, ProviderError>
fn transactions_by_block( &self, _block_id: HashOrNumber, ) -> Result<Option<Vec<<StaticFileProvider<N> as TransactionsProvider>::Transaction>>, ProviderError>
Source§fn transactions_by_block_range(
&self,
_range: impl RangeBounds<u64>,
) -> Result<Vec<Vec<<StaticFileProvider<N> as TransactionsProvider>::Transaction>>, ProviderError>
fn transactions_by_block_range( &self, _range: impl RangeBounds<u64>, ) -> Result<Vec<Vec<<StaticFileProvider<N> as TransactionsProvider>::Transaction>>, ProviderError>
Source§fn transactions_by_tx_range(
&self,
range: impl RangeBounds<u64>,
) -> Result<Vec<<StaticFileProvider<N> as TransactionsProvider>::Transaction>, ProviderError>
fn transactions_by_tx_range( &self, range: impl RangeBounds<u64>, ) -> Result<Vec<<StaticFileProvider<N> as TransactionsProvider>::Transaction>, ProviderError>
Source§fn senders_by_tx_range(
&self,
range: impl RangeBounds<u64>,
) -> Result<Vec<Address>, ProviderError>
fn senders_by_tx_range( &self, range: impl RangeBounds<u64>, ) -> Result<Vec<Address>, ProviderError>
Source§fn transaction_sender(&self, id: u64) -> Result<Option<Address>, ProviderError>
fn transaction_sender(&self, id: u64) -> Result<Option<Address>, ProviderError>
Source§impl<N> TransactionsProviderExt for StaticFileProvider<N>where
N: NodePrimitives,
<N as NodePrimitives>::SignedTx: Value,
<N as NodePrimitives>::Receipt: Value,
<N as NodePrimitives>::BlockHeader: Value,
impl<N> TransactionsProviderExt for StaticFileProvider<N>where
N: NodePrimitives,
<N as NodePrimitives>::SignedTx: Value,
<N as NodePrimitives>::Receipt: Value,
<N as NodePrimitives>::BlockHeader: Value,
Source§fn transaction_hashes_by_range(
&self,
tx_range: Range<u64>,
) -> Result<Vec<(FixedBytes<32>, u64)>, ProviderError>
fn transaction_hashes_by_range( &self, tx_range: Range<u64>, ) -> Result<Vec<(FixedBytes<32>, u64)>, ProviderError>
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>
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>,
§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> ⓘ
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> ⓘ
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> Paint for Twhere
T: ?Sized,
impl<T> Paint for Twhere
T: ?Sized,
§fn fg(&self, value: Color) -> Painted<&T>
fn fg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self with the foreground set to
value.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like red() and
green(), which have the same functionality but are
pithier.
§Example
Set foreground color to white using fg():
use yansi::{Paint, Color};
painted.fg(Color::White);Set foreground color to white using white().
use yansi::Paint;
painted.white();§fn bright_black(&self) -> Painted<&T>
fn bright_black(&self) -> Painted<&T>
§fn bright_red(&self) -> Painted<&T>
fn bright_red(&self) -> Painted<&T>
§fn bright_green(&self) -> Painted<&T>
fn bright_green(&self) -> Painted<&T>
§fn bright_yellow(&self) -> Painted<&T>
fn bright_yellow(&self) -> Painted<&T>
§fn bright_blue(&self) -> Painted<&T>
fn bright_blue(&self) -> Painted<&T>
§fn bright_magenta(&self) -> Painted<&T>
fn bright_magenta(&self) -> Painted<&T>
§fn bright_cyan(&self) -> Painted<&T>
fn bright_cyan(&self) -> Painted<&T>
§fn bright_white(&self) -> Painted<&T>
fn bright_white(&self) -> Painted<&T>
§fn bg(&self, value: Color) -> Painted<&T>
fn bg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self with the background set to
value.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like on_red() and
on_green(), which have the same functionality but
are pithier.
§Example
Set background color to red using fg():
use yansi::{Paint, Color};
painted.bg(Color::Red);Set background color to red using on_red().
use yansi::Paint;
painted.on_red();§fn on_primary(&self) -> Painted<&T>
fn on_primary(&self) -> Painted<&T>
§fn on_magenta(&self) -> Painted<&T>
fn on_magenta(&self) -> Painted<&T>
§fn on_bright_black(&self) -> Painted<&T>
fn on_bright_black(&self) -> Painted<&T>
§fn on_bright_red(&self) -> Painted<&T>
fn on_bright_red(&self) -> Painted<&T>
§fn on_bright_green(&self) -> Painted<&T>
fn on_bright_green(&self) -> Painted<&T>
§fn on_bright_yellow(&self) -> Painted<&T>
fn on_bright_yellow(&self) -> Painted<&T>
§fn on_bright_blue(&self) -> Painted<&T>
fn on_bright_blue(&self) -> Painted<&T>
§fn on_bright_magenta(&self) -> Painted<&T>
fn on_bright_magenta(&self) -> Painted<&T>
§fn on_bright_cyan(&self) -> Painted<&T>
fn on_bright_cyan(&self) -> Painted<&T>
§fn on_bright_white(&self) -> Painted<&T>
fn on_bright_white(&self) -> Painted<&T>
§fn attr(&self, value: Attribute) -> Painted<&T>
fn attr(&self, value: Attribute) -> Painted<&T>
Enables the styling [Attribute] value.
This method should be used rarely. Instead, prefer to use
attribute-specific builder methods like bold() and
underline(), which have the same functionality
but are pithier.
§Example
Make text bold using attr():
use yansi::{Paint, Attribute};
painted.attr(Attribute::Bold);Make text bold using using bold().
use yansi::Paint;
painted.bold();§fn rapid_blink(&self) -> Painted<&T>
fn rapid_blink(&self) -> Painted<&T>
§fn quirk(&self, value: Quirk) -> Painted<&T>
fn quirk(&self, value: Quirk) -> Painted<&T>
Enables the yansi [Quirk] value.
This method should be used rarely. Instead, prefer to use quirk-specific
builder methods like mask() and
wrap(), which have the same functionality but are
pithier.
§Example
Enable wrapping using .quirk():
use yansi::{Paint, Quirk};
painted.quirk(Quirk::Wrap);Enable wrapping using wrap().
use yansi::Paint;
painted.wrap();§fn clear(&self) -> Painted<&T>
👎Deprecated since 1.0.1: renamed to resetting() due to conflicts with Vec::clear().
The clear() method will be removed in a future release.
fn clear(&self) -> Painted<&T>
resetting() due to conflicts with Vec::clear().
The clear() method will be removed in a future release.§fn whenever(&self, value: Condition) -> Painted<&T>
fn whenever(&self, value: Condition) -> Painted<&T>
Conditionally enable styling based on whether the [Condition] value
applies. Replaces any previous condition.
See the crate level docs for more details.
§Example
Enable styling painted only when both stdout and stderr are TTYs:
use yansi::{Paint, Condition};
painted.red().on_yellow().whenever(Condition::STDOUTERR_ARE_TTY);§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,
§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,
§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,
§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,
§fn compression(self) -> Compression<Self>where
Self: Sized,
fn compression(self) -> Compression<Self>where
Self: Sized,
§fn decompression(self) -> Decompression<Self>where
Self: Sized,
fn decompression(self) -> Decompression<Self>where
Self: Sized,
§fn trace_for_http(self) -> Trace<Self, SharedClassifier<ServerErrorsAsFailures>>where
Self: Sized,
fn trace_for_http(self) -> Trace<Self, SharedClassifier<ServerErrorsAsFailures>>where
Self: Sized,
§fn trace_for_grpc(self) -> Trace<Self, SharedClassifier<GrpcErrorsAsFailures>>where
Self: Sized,
fn trace_for_grpc(self) -> Trace<Self, SharedClassifier<GrpcErrorsAsFailures>>where
Self: Sized,
§fn follow_redirects(self) -> FollowRedirect<Self>where
Self: Sized,
fn follow_redirects(self) -> FollowRedirect<Self>where
Self: Sized,
§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,
§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,
§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,
§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,
§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,
§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,
§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,
§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,
§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,
§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,
§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,
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,
§fn propagate_x_request_id(self) -> PropagateRequestId<Self>where
Self: Sized,
fn propagate_x_request_id(self) -> PropagateRequestId<Self>where
Self: Sized,
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,
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,
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,
§fn append_trailing_slash(self) -> NormalizePath<Self>where
Self: Sized,
fn append_trailing_slash(self) -> NormalizePath<Self>where
Self: Sized,
§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> ⓘ
Source§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
Source§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>,
Source§fn with_current_subscriber(self) -> WithDispatch<Self> ⓘ
fn with_current_subscriber(self) -> WithDispatch<Self> ⓘ
impl<N, T> BlockReaderFor<N> for Twhere
N: NetworkPrimitives,
T: BlockReader<Block = <N as NetworkPrimitives>::Block, Header = <N as NetworkPrimitives>::BlockHeader, Transaction = <<N as NetworkPrimitives>::BlockBody as BlockBody>::Transaction, Receipt = <N as NetworkPrimitives>::Receipt>,
impl<T> ErasedDestructor for Twhere
T: 'static,
impl<T> MaybeDebug for Twhere
T: Debug,
impl<T> MaybeSend for Twhere
T: Send,
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