Enum ConsensusError
pub enum ConsensusError {
Show 43 variants
HeaderGasUsedExceedsGasLimit {
gas_used: u64,
gas_limit: u64,
},
BlockGasUsed {
gas: GotExpected<u64>,
gas_spent_by_tx: Vec<(u64, u64)>,
},
BodyOmmersHashDiff(GotExpectedBoxed<FixedBytes<32>>),
BodyStateRootDiff(GotExpectedBoxed<FixedBytes<32>>),
BodyTransactionRootDiff(GotExpectedBoxed<FixedBytes<32>>),
BodyReceiptRootDiff(GotExpectedBoxed<FixedBytes<32>>),
BodyBloomLogDiff(GotExpectedBoxed<Bloom>),
BodyWithdrawalsRootDiff(GotExpectedBoxed<FixedBytes<32>>),
BodyRequestsHashDiff(GotExpectedBoxed<FixedBytes<32>>),
BlockKnown {
hash: FixedBytes<32>,
number: u64,
},
ParentUnknown {
hash: FixedBytes<32>,
},
ParentBlockNumberMismatch {
parent_block_number: u64,
block_number: u64,
},
ParentHashMismatch(GotExpectedBoxed<FixedBytes<32>>),
TimestampIsInFuture {
timestamp: u64,
present_timestamp: u64,
},
BaseFeeMissing,
TransactionSignerRecoveryError,
ExtraDataExceedsMax {
len: usize,
},
TheMergeDifficultyIsNotZero,
TheMergeNonceIsNotZero,
TheMergeOmmerRootIsNotEmpty,
WithdrawalsRootMissing,
RequestsHashMissing,
WithdrawalsRootUnexpected,
RequestsHashUnexpected,
BodyWithdrawalsMissing,
BodyRequestsMissing,
BlobGasUsedMissing,
BlobGasUsedUnexpected,
ExcessBlobGasMissing,
ExcessBlobGasUnexpected,
ParentBeaconBlockRootMissing,
ParentBeaconBlockRootUnexpected,
BlobGasUsedExceedsMaxBlobGasPerBlock {
blob_gas_used: u64,
max_blob_gas_per_block: u64,
},
BlobGasUsedNotMultipleOfBlobGasPerBlob {
blob_gas_used: u64,
blob_gas_per_blob: u64,
},
ExcessBlobGasNotMultipleOfBlobGasPerBlob {
excess_blob_gas: u64,
blob_gas_per_blob: u64,
},
BlobGasUsedDiff(GotExpected<u64>),
InvalidTransaction(InvalidTransactionError),
BaseFeeDiff(GotExpected<u64>),
ExcessBlobGasDiff {
diff: GotExpected<u64>,
parent_excess_blob_gas: u64,
parent_blob_gas_used: u64,
},
GasLimitInvalidIncrease {
parent_gas_limit: u64,
child_gas_limit: u64,
},
GasLimitInvalidMinimum {
child_gas_limit: u64,
},
GasLimitInvalidDecrease {
parent_gas_limit: u64,
child_gas_limit: u64,
},
TimestampIsInPast {
parent_timestamp: u64,
timestamp: u64,
},
}
Expand description
Consensus Errors
Variants§
HeaderGasUsedExceedsGasLimit
Error when the gas used in the header exceeds the gas limit.
Fields
BlockGasUsed
Error when block gas used doesn’t match expected value
Fields
gas: GotExpected<u64>
The gas diff.
BodyOmmersHashDiff(GotExpectedBoxed<FixedBytes<32>>)
Error when the hash of block ommer is different from the expected hash.
BodyStateRootDiff(GotExpectedBoxed<FixedBytes<32>>)
Error when the state root in the block is different from the expected state root.
BodyTransactionRootDiff(GotExpectedBoxed<FixedBytes<32>>)
Error when the transaction root in the block is different from the expected transaction root.
BodyReceiptRootDiff(GotExpectedBoxed<FixedBytes<32>>)
Error when the receipt root in the block is different from the expected receipt root.
BodyBloomLogDiff(GotExpectedBoxed<Bloom>)
Error when header bloom filter is different from the expected bloom filter.
BodyWithdrawalsRootDiff(GotExpectedBoxed<FixedBytes<32>>)
Error when the withdrawals root in the block is different from the expected withdrawals root.
BodyRequestsHashDiff(GotExpectedBoxed<FixedBytes<32>>)
Error when the requests hash in the block is different from the expected requests hash.
BlockKnown
Error when a block with a specific hash and number is already known.
Fields
hash: FixedBytes<32>
The hash of the known block.
ParentUnknown
Error when the parent hash of a block is not known.
Fields
hash: FixedBytes<32>
The hash of the unknown parent block.
ParentBlockNumberMismatch
Error when the block number does not match the parent block number.
ParentHashMismatch(GotExpectedBoxed<FixedBytes<32>>)
Error when the parent hash does not match the expected parent hash.
TimestampIsInFuture
Error when the block timestamp is in the future compared to our clock time.
BaseFeeMissing
Error when the base fee is missing.
TransactionSignerRecoveryError
Error when there is a transaction signer recovery error.
ExtraDataExceedsMax
Error when the extra data length exceeds the maximum allowed.
TheMergeDifficultyIsNotZero
Error when the difficulty after a merge is not zero.
TheMergeNonceIsNotZero
Error when the nonce after a merge is not zero.
TheMergeOmmerRootIsNotEmpty
Error when the ommer root after a merge is not empty.
WithdrawalsRootMissing
Error when the withdrawals root is missing.
RequestsHashMissing
Error when the requests hash is missing.
WithdrawalsRootUnexpected
Error when an unexpected withdrawals root is encountered.
RequestsHashUnexpected
Error when an unexpected requests hash is encountered.
BodyWithdrawalsMissing
Error when withdrawals are missing.
BodyRequestsMissing
Error when requests are missing.
BlobGasUsedMissing
Error when blob gas used is missing.
BlobGasUsedUnexpected
Error when unexpected blob gas used is encountered.
ExcessBlobGasMissing
Error when excess blob gas is missing.
ExcessBlobGasUnexpected
Error when unexpected excess blob gas is encountered.
ParentBeaconBlockRootMissing
Error when the parent beacon block root is missing.
ParentBeaconBlockRootUnexpected
Error when an unexpected parent beacon block root is encountered.
BlobGasUsedExceedsMaxBlobGasPerBlock
Error when blob gas used exceeds the maximum allowed.
Fields
BlobGasUsedNotMultipleOfBlobGasPerBlob
Error when blob gas used is not a multiple of blob gas per blob.
ExcessBlobGasNotMultipleOfBlobGasPerBlob
Error when excess blob gas is not a multiple of blob gas per blob.
Fields
BlobGasUsedDiff(GotExpected<u64>)
Error when the blob gas used in the header does not match the expected blob gas used.
InvalidTransaction(InvalidTransactionError)
Error for a transaction that violates consensus.
BaseFeeDiff(GotExpected<u64>)
Error when the block’s base fee is different from the expected base fee.
ExcessBlobGasDiff
Error when there is an invalid excess blob gas.
Fields
diff: GotExpected<u64>
The excess blob gas diff.
GasLimitInvalidIncrease
Error when the child gas limit exceeds the maximum allowed increase.
GasLimitInvalidMinimum
Error indicating that the child gas limit is below the minimum allowed limit.
This error occurs when the child gas limit is less than the specified minimum gas limit.
GasLimitInvalidDecrease
Error when the child gas limit exceeds the maximum allowed decrease.
TimestampIsInPast
Error when the block timestamp is in the past compared to the parent timestamp.
Implementations§
§impl ConsensusError
impl ConsensusError
pub const fn is_state_root_error(&self) -> bool
pub const fn is_state_root_error(&self) -> bool
Returns true
if the error is a state root error.
Trait Implementations§
§impl Clone for ConsensusError
impl Clone for ConsensusError
§fn clone(&self) -> ConsensusError
fn clone(&self) -> ConsensusError
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more§impl Debug for ConsensusError
impl Debug for ConsensusError
§impl Display for ConsensusError
impl Display for ConsensusError
§impl Error for ConsensusError
impl Error for ConsensusError
§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
§impl From<ConsensusError> for BlockErrorKind
impl From<ConsensusError> for BlockErrorKind
§fn from(source: ConsensusError) -> BlockErrorKind
fn from(source: ConsensusError) -> BlockErrorKind
§impl From<ConsensusError> for BlockExecutionError
impl From<ConsensusError> for BlockExecutionError
§fn from(value: ConsensusError) -> BlockExecutionError
fn from(value: ConsensusError) -> BlockExecutionError
§impl From<ConsensusError> for BlockImportError
impl From<ConsensusError> for BlockImportError
§fn from(source: ConsensusError) -> BlockImportError
fn from(source: ConsensusError) -> BlockImportError
Source§impl From<ConsensusError> for InsertBlockErrorKind
impl From<ConsensusError> for InsertBlockErrorKind
Source§fn from(source: ConsensusError) -> InsertBlockErrorKind
fn from(source: ConsensusError) -> InsertBlockErrorKind
Source§impl From<ConsensusError> for InsertBlockErrorKindTwo
impl From<ConsensusError> for InsertBlockErrorKindTwo
Source§fn from(source: ConsensusError) -> InsertBlockErrorKindTwo
fn from(source: ConsensusError) -> InsertBlockErrorKindTwo
Source§impl From<ConsensusError> for InsertBlockValidationError
impl From<ConsensusError> for InsertBlockValidationError
Source§fn from(source: ConsensusError) -> InsertBlockValidationError
fn from(source: ConsensusError) -> InsertBlockValidationError
Source§impl From<ConsensusError> for RethError
impl From<ConsensusError> for RethError
Source§fn from(source: ConsensusError) -> RethError
fn from(source: ConsensusError) -> RethError
§impl From<InvalidTransactionError> for ConsensusError
impl From<InvalidTransactionError> for ConsensusError
§fn from(value: InvalidTransactionError) -> ConsensusError
fn from(value: InvalidTransactionError) -> ConsensusError
§impl PartialEq for ConsensusError
impl PartialEq for ConsensusError
Source§impl<Ok> ToRpcResult<Ok, ConsensusError> for Result<Ok, ConsensusError>
impl<Ok> ToRpcResult<Ok, ConsensusError> for Result<Ok, ConsensusError>
Source§fn map_rpc_err<'a, F, M>(self, op: F) -> Result<Ok, ErrorObject<'static>>
fn map_rpc_err<'a, F, M>(self, op: F) -> Result<Ok, ErrorObject<'static>>
RpcResult
]Source§fn map_internal_err<'a, F, M>(self, op: F) -> Result<Ok, ErrorObject<'static>>
fn map_internal_err<'a, F, M>(self, op: F) -> Result<Ok, ErrorObject<'static>>
RpcResult
] with the
[jsonrpsee_types::error::INTERNAL_ERROR_CODE
] and the given message.Source§fn map_internal_err_with_data<'a, F, M>(
self,
op: F,
) -> Result<Ok, ErrorObject<'static>>
fn map_internal_err_with_data<'a, F, M>( self, op: F, ) -> Result<Ok, ErrorObject<'static>>
RpcResult
] with the
[jsonrpsee_types::error::INTERNAL_ERROR_CODE
] and given message and data.Source§fn with_message(self, msg: &str) -> Result<Ok, ErrorObject<'static>>
fn with_message(self, msg: &str) -> Result<Ok, ErrorObject<'static>>
Source§fn to_rpc_result(self) -> Result<Ok, ErrorObject<'static>>where
Err: Display,
fn to_rpc_result(self) -> Result<Ok, ErrorObject<'static>>where
Err: Display,
RpcResult
] by converting error variant to
[jsonrpsee_types::error::ErrorObject
]impl Eq for ConsensusError
impl StructuralPartialEq for ConsensusError
Auto Trait Implementations§
impl Freeze for ConsensusError
impl RefUnwindSafe for ConsensusError
impl Send for ConsensusError
impl Sync for ConsensusError
impl Unpin for ConsensusError
impl UnwindSafe for ConsensusError
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.§impl<T> FmtForward for T
impl<T> FmtForward for T
§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self
to use its Binary
implementation when Debug
-formatted.§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self
to use its Display
implementation when
Debug
-formatted.§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self
to use its LowerExp
implementation when
Debug
-formatted.§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self
to use its LowerHex
implementation when
Debug
-formatted.§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self
to use its Octal
implementation when Debug
-formatted.§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self
to use its Pointer
implementation when
Debug
-formatted.§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self
to use its UpperExp
implementation when
Debug
-formatted.§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self
to use its UpperHex
implementation when
Debug
-formatted.§fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
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> 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> 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> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
§fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
ToCompactString::to_compact_string()
] Read more§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
CompactString
]. Read more§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string
, but without panic on OOM.
§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<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: 48 bytes
Size for each variant:
HeaderGasUsedExceedsGasLimit
: 23 bytesBlockGasUsed
: 47 bytesBodyOmmersHashDiff
: 15 bytesBodyStateRootDiff
: 15 bytesBodyTransactionRootDiff
: 15 bytesBodyReceiptRootDiff
: 15 bytesBodyBloomLogDiff
: 15 bytesBodyWithdrawalsRootDiff
: 15 bytesBodyRequestsHashDiff
: 15 bytesBlockKnown
: 47 bytesParentUnknown
: 32 bytesParentBlockNumberMismatch
: 23 bytesParentHashMismatch
: 15 bytesTimestampIsInFuture
: 23 bytesBaseFeeMissing
: 0 bytesTransactionSignerRecoveryError
: 0 bytesExtraDataExceedsMax
: 15 bytesTheMergeDifficultyIsNotZero
: 0 bytesTheMergeNonceIsNotZero
: 0 bytesTheMergeOmmerRootIsNotEmpty
: 0 bytesWithdrawalsRootMissing
: 0 bytesRequestsHashMissing
: 0 bytesWithdrawalsRootUnexpected
: 0 bytesRequestsHashUnexpected
: 0 bytesBodyWithdrawalsMissing
: 0 bytesBodyRequestsMissing
: 0 bytesBlobGasUsedMissing
: 0 bytesBlobGasUsedUnexpected
: 0 bytesExcessBlobGasMissing
: 0 bytesExcessBlobGasUnexpected
: 0 bytesParentBeaconBlockRootMissing
: 0 bytesParentBeaconBlockRootUnexpected
: 0 bytesBlobGasUsedExceedsMaxBlobGasPerBlock
: 23 bytesBlobGasUsedNotMultipleOfBlobGasPerBlob
: 23 bytesExcessBlobGasNotMultipleOfBlobGasPerBlob
: 23 bytesBlobGasUsedDiff
: 23 bytesInvalidTransaction
: 31 bytesBaseFeeDiff
: 23 bytesExcessBlobGasDiff
: 39 bytesGasLimitInvalidIncrease
: 23 bytesGasLimitInvalidMinimum
: 15 bytesGasLimitInvalidDecrease
: 23 bytesTimestampIsInPast
: 23 bytes