Enum alloy_zksync::contracts::l1::bridge_hub::Bridgehub::BridgehubEvents
source · pub enum BridgehubEvents {
NewPriorityRequest(NewPriorityRequest),
}
Expand description
Container for all the Bridgehub
events.
Variants§
NewPriorityRequest(NewPriorityRequest)
Implementations§
Trait Implementations§
source§impl IntoLogData for BridgehubEvents
impl IntoLogData for BridgehubEvents
source§fn to_log_data(&self) -> LogData
fn to_log_data(&self) -> LogData
Convert into a [
LogData
] object.source§fn into_log_data(self) -> LogData
fn into_log_data(self) -> LogData
Consume and convert into a [
LogData
] object.source§impl SolEventInterface for BridgehubEvents
impl SolEventInterface for BridgehubEvents
source§fn decode_raw_log(topics: &[Word], data: &[u8], validate: bool) -> Result<Self>
fn decode_raw_log(topics: &[Word], data: &[u8], validate: bool) -> Result<Self>
Decode the events from the given log info.
§fn decode_log(log: &Log, validate: bool) -> Result<Log<Self>, Error>
fn decode_log(log: &Log, validate: bool) -> Result<Log<Self>, Error>
Decode the events from the given log object.
Auto Trait Implementations§
impl !Freeze for BridgehubEvents
impl RefUnwindSafe for BridgehubEvents
impl Send for BridgehubEvents
impl Sync for BridgehubEvents
impl Unpin for BridgehubEvents
impl UnwindSafe for BridgehubEvents
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
§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>
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