pub struct ReceiptLog<'a> {
pub address: Address,
pub topics: ReceiptLogTopics<'a>,
pub data: &'a [u8],
}Expand description
Borrowed receipt log entry.
Fields§
§address: AddressContract address that emitted the log.
topics: ReceiptLogTopics<'a>Borrowed topics list.
data: &'a [u8]Borrowed log data bytes.
Trait Implementations§
Source§impl<'a> Clone for ReceiptLog<'a>
impl<'a> Clone for ReceiptLog<'a>
Source§fn clone(&self) -> ReceiptLog<'a>
fn clone(&self) -> ReceiptLog<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<'a> Copy for ReceiptLog<'a>
Source§impl<'a> Debug for ReceiptLog<'a>
impl<'a> Debug for ReceiptLog<'a>
impl<'a> Eq for ReceiptLog<'a>
Source§impl<'a> PartialEq for ReceiptLog<'a>
impl<'a> PartialEq for ReceiptLog<'a>
Source§fn eq(&self, other: &ReceiptLog<'a>) -> bool
fn eq(&self, other: &ReceiptLog<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a> StructuralPartialEq for ReceiptLog<'a>
Auto Trait Implementations§
impl<'a> Freeze for ReceiptLog<'a>
impl<'a> RefUnwindSafe for ReceiptLog<'a>
impl<'a> Send for ReceiptLog<'a>
impl<'a> Sync for ReceiptLog<'a>
impl<'a> Unpin for ReceiptLog<'a>
impl<'a> UnsafeUnpin for ReceiptLog<'a>
impl<'a> UnwindSafe for ReceiptLog<'a>
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