Struct primitives::log_entry::LogEntry
source · pub struct LogEntry {
pub address: Address,
pub topics: Vec<H256>,
pub data: Bytes,
pub space: Space,
}
Expand description
A record of execution for a LOG
operation.
Fields§
§address: Address
The address of the contract executing at the point of the LOG
operation.
topics: Vec<H256>
The topics associated with the LOG
operation.
data: Bytes
The data associated with the LOG
operation.
space: Space
The space associated with address
.
Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for LogEntry
impl<'de> Deserialize<'de> for LogEntry
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
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 PartialEq for LogEntry
impl PartialEq for LogEntry
impl Eq for LogEntry
impl StructuralPartialEq for LogEntry
Auto Trait Implementations§
impl RefUnwindSafe for LogEntry
impl Send for LogEntry
impl Sync for LogEntry
impl Unpin for LogEntry
impl UnwindSafe for LogEntry
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