pub enum SystemConfigUpdateError {
LogProcessing(LogProcessingError),
Batcher(BatcherUpdateError),
GasConfig(GasConfigUpdateError),
GasLimit(GasLimitUpdateError),
Eip1559(EIP1559UpdateError),
OperatorFee(OperatorFeeUpdateError),
}Expand description
An error for processing the crate::SystemConfig update log.
Variants§
LogProcessing(LogProcessingError)
An error occurred while processing the update log.
Batcher(BatcherUpdateError)
A batcher update error.
GasConfig(GasConfigUpdateError)
A gas config update error.
GasLimit(GasLimitUpdateError)
A gas limit update error.
Eip1559(EIP1559UpdateError)
An EIP-1559 parameter update error.
OperatorFee(OperatorFeeUpdateError)
An operator fee parameter update error.
Trait Implementations§
Source§impl Clone for SystemConfigUpdateError
impl Clone for SystemConfigUpdateError
Source§fn clone(&self) -> SystemConfigUpdateError
fn clone(&self) -> SystemConfigUpdateError
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SystemConfigUpdateError
impl Debug for SystemConfigUpdateError
Source§impl Display for SystemConfigUpdateError
impl Display for SystemConfigUpdateError
Source§impl Error for SystemConfigUpdateError
impl Error for SystemConfigUpdateError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<BatcherUpdateError> for SystemConfigUpdateError
impl From<BatcherUpdateError> for SystemConfigUpdateError
Source§fn from(value: BatcherUpdateError) -> SystemConfigUpdateError
fn from(value: BatcherUpdateError) -> SystemConfigUpdateError
Converts to this type from the input type.
Source§impl From<EIP1559UpdateError> for SystemConfigUpdateError
impl From<EIP1559UpdateError> for SystemConfigUpdateError
Source§fn from(value: EIP1559UpdateError) -> SystemConfigUpdateError
fn from(value: EIP1559UpdateError) -> SystemConfigUpdateError
Converts to this type from the input type.
Source§impl From<GasConfigUpdateError> for SystemConfigUpdateError
impl From<GasConfigUpdateError> for SystemConfigUpdateError
Source§fn from(value: GasConfigUpdateError) -> SystemConfigUpdateError
fn from(value: GasConfigUpdateError) -> SystemConfigUpdateError
Converts to this type from the input type.
Source§impl From<GasLimitUpdateError> for SystemConfigUpdateError
impl From<GasLimitUpdateError> for SystemConfigUpdateError
Source§fn from(value: GasLimitUpdateError) -> SystemConfigUpdateError
fn from(value: GasLimitUpdateError) -> SystemConfigUpdateError
Converts to this type from the input type.
Source§impl From<LogProcessingError> for SystemConfigUpdateError
impl From<LogProcessingError> for SystemConfigUpdateError
Source§fn from(value: LogProcessingError) -> SystemConfigUpdateError
fn from(value: LogProcessingError) -> SystemConfigUpdateError
Converts to this type from the input type.
Source§impl From<OperatorFeeUpdateError> for SystemConfigUpdateError
impl From<OperatorFeeUpdateError> for SystemConfigUpdateError
Source§fn from(value: OperatorFeeUpdateError) -> SystemConfigUpdateError
fn from(value: OperatorFeeUpdateError) -> SystemConfigUpdateError
Converts to this type from the input type.
Source§impl PartialEq for SystemConfigUpdateError
impl PartialEq for SystemConfigUpdateError
Source§fn eq(&self, other: &SystemConfigUpdateError) -> bool
fn eq(&self, other: &SystemConfigUpdateError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SystemConfigUpdateError
impl Eq for SystemConfigUpdateError
impl StructuralPartialEq for SystemConfigUpdateError
Auto Trait Implementations§
impl Freeze for SystemConfigUpdateError
impl RefUnwindSafe for SystemConfigUpdateError
impl Send for SystemConfigUpdateError
impl Sync for SystemConfigUpdateError
impl Unpin for SystemConfigUpdateError
impl UnwindSafe for SystemConfigUpdateError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more