pub struct EmittedEvent {
pub topics: Vec<Vec<u8>>,
pub data: Vec<u8>,
}
Expand description
Record for an emitted event.
Fields§
§topics: Vec<Vec<u8>>
Recorded topics of the emitted event.
data: Vec<u8>
Recorded encoding of the emitted event.
Trait Implementations§
Source§impl Clone for EmittedEvent
impl Clone for EmittedEvent
Source§fn clone(&self) -> EmittedEvent
fn clone(&self) -> EmittedEvent
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl From<EmittedEvent> for EmittedEvent
impl From<EmittedEvent> for EmittedEvent
Source§fn from(evt: EmittedEvent) -> Self
fn from(evt: EmittedEvent) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EmittedEvent
impl RefUnwindSafe for EmittedEvent
impl Send for EmittedEvent
impl Sync for EmittedEvent
impl Unpin for EmittedEvent
impl UnwindSafe for EmittedEvent
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<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
Source§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
Source§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
Consume self to return an equivalent value of
T
. Read moreSource§impl<T, S> UniqueSaturatedInto<T> for S
impl<T, S> UniqueSaturatedInto<T> for S
Source§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
Consume self to return an equivalent value of
T
.