Struct ethers_core::abi::RawLog
source · pub struct RawLog {
pub topics: Vec<H256>,
pub data: Vec<u8>,
}
Expand description
Ethereum log.
Fields§
§topics: Vec<H256>
Indexed event params are represented as log topics.
data: Vec<u8>
Others are just plain data.
Trait Implementations§
source§impl PartialEq for RawLog
impl PartialEq for RawLog
impl Eq for RawLog
impl StructuralPartialEq for RawLog
Auto Trait Implementations§
impl RefUnwindSafe for RawLog
impl Send for RawLog
impl Sync for RawLog
impl Unpin for RawLog
impl UnwindSafe for RawLog
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