revm_primitives

Struct Log

pub struct Log<T = LogData> {
    pub address: Address,
    pub data: T,
}
Expand description

A log consists of an address, and some log data.

Fields§

§address: Address

The address which emitted this log.

§data: T

The log data.

Implementations§

§

impl Log

pub fn new( address: Address, topics: Vec<FixedBytes<32>>, data: Bytes, ) -> Option<Log>

Creates a new log.

pub const fn new_unchecked( address: Address, topics: Vec<FixedBytes<32>>, data: Bytes, ) -> Log

Creates a new log.

pub const fn empty() -> Log

Creates a new empty log.

§

impl<T> Log<T>
where &'a T: for<'a> Into<LogData>,

pub const fn new_from_event_unchecked(address: Address, data: T) -> Log<T>

Creates a new log.

pub fn new_from_event(address: Address, data: T) -> Option<Log<T>>

Creates a new log from an deserialized event.

pub fn reserialize(&self) -> Log

Reserialize the data.

Trait Implementations§

§

impl<T> Clone for Log<T>
where T: Clone,

§

fn clone(&self) -> Log<T>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl<T> Debug for Log<T>
where T: Debug,

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl Decodable for Log

§

fn decode(buf: &mut &[u8]) -> Result<Log, Error>

Decodes the blob into the appropriate type. buf must be advanced past the decoded object.
§

impl<T> Default for Log<T>
where T: Default,

§

fn default() -> Log<T>

Returns the “default value” for a type. Read more
§

impl<T> Deref for Log<T>

§

type Target = T

The resulting type after dereferencing.
§

fn deref(&self) -> &<Log<T> as Deref>::Target

Dereferences the value.
§

impl<'de, T> Deserialize<'de> for Log<T>
where T: Deserialize<'de>,

§

fn deserialize<D>( deserializer: D, ) -> Result<Log<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Encodable for Log

§

fn encode(&self, out: &mut dyn BufMut)

Encodes the type into the out buffer.
§

fn length(&self) -> usize

Returns the length of the encoding of this type in bytes. Read more
§

impl<T> Encodable for Log<T>
where &'a T: for<'a> Into<LogData>,

§

fn encode(&self, out: &mut dyn BufMut)

Encodes the type into the out buffer.
§

fn length(&self) -> usize

Returns the length of the encoding of this type in bytes. Read more
§

impl<T> Hash for Log<T>
where T: Hash,

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl<T> PartialEq for Log<T>
where T: PartialEq,

§

fn eq(&self, other: &Log<T>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl<T> Serialize for Log<T>
where T: Serialize,

§

fn serialize<S>( &self, serializer: S, ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more
§

impl<T> Eq for Log<T>
where T: Eq,

§

impl<T> StructuralPartialEq for Log<T>

Auto Trait Implementations§

§

impl<T> Freeze for Log<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for Log<T>
where T: RefUnwindSafe,

§

impl<T> Send for Log<T>
where T: Send,

§

impl<T> Sync for Log<T>
where T: Sync,

§

impl<T> Unpin for Log<T>
where T: Unpin,

§

impl<T> UnwindSafe for Log<T>
where T: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,