Struct alloy_primitives::Log

source ·
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§

source§

impl Log

source

pub fn new(address: Address, topics: Vec<B256>, data: Bytes) -> Option<Self>

Creates a new log.

source

pub const fn new_unchecked( address: Address, topics: Vec<B256>, data: Bytes, ) -> Self

Creates a new log.

source

pub const fn empty() -> Self

Creates a new empty log.

source§

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

source

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

Creates a new log.

source

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

Creates a new log from an deserialized event.

source

pub fn reserialize(&self) -> Log<LogData>

Reserialize the data.

Trait Implementations§

source§

impl<T> AsRef<Log<T>> for Log<T>

source§

fn as_ref(&self) -> &Self

Converts this type into a shared reference of the (usually inferred) input type.
source§

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

source§

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
source§

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

source§

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

Formats the value using the given formatter. Read more
source§

impl Decodable for Log

source§

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

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

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

source§

fn default() -> Log<T>

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

impl<T> Deref for Log<T>

§

type Target = T

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl<T> DerefMut for Log<T>

source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.
source§

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

source§

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

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

impl Encodable for Log

source§

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

Encodes the type into the out buffer.
source§

fn length(&self) -> usize

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

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

source§

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

Encodes the type into the out buffer.
source§

fn length(&self) -> usize

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

impl<'a> Extend<&'a Log> for Bloom

source§

fn extend<T: IntoIterator<Item = &'a Log>>(&mut self, logs: T)

Extends a collection with the contents of an iterator. Read more
source§

fn extend_one(&mut self, item: A)

🔬This is a nightly-only experimental API. (extend_one)
Extends a collection with exactly one element.
source§

fn extend_reserve(&mut self, additional: usize)

🔬This is a nightly-only experimental API. (extend_one)
Reserves capacity in a collection for the given number of additional elements. Read more
source§

impl<'a> FromIterator<&'a Log> for Bloom

source§

fn from_iter<T: IntoIterator<Item = &'a Log>>(logs: T) -> Self

Creates a value from an iterator. Read more
source§

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

source§

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

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
source§

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

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

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

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

source§

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

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

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

source§

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§

default 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
source§

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

source§

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

Compare self to key and return true if they are equal.
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

§

type Output = T

Should always be Self
source§

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

§

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>,

§

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>,

§

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>,