pub struct EvmLogEntry {
pub address: String,
pub topics: Vec<String>,
pub data: String,
pub log_index: Option<u64>,
}Fields§
§address: String§topics: Vec<String>§data: String§log_index: Option<u64>Trait Implementations§
Source§impl Clone for EvmLogEntry
impl Clone for EvmLogEntry
Source§fn clone(&self) -> EvmLogEntry
fn clone(&self) -> EvmLogEntry
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 moreSource§impl Debug for EvmLogEntry
impl Debug for EvmLogEntry
Source§impl<'de> Deserialize<'de> for EvmLogEntry
impl<'de> Deserialize<'de> for EvmLogEntry
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
impl Eq for EvmLogEntry
Source§impl PartialEq for EvmLogEntry
impl PartialEq for EvmLogEntry
Source§impl Serialize for EvmLogEntry
impl Serialize for EvmLogEntry
impl StructuralPartialEq for EvmLogEntry
Auto Trait Implementations§
impl Freeze for EvmLogEntry
impl RefUnwindSafe for EvmLogEntry
impl Send for EvmLogEntry
impl Sync for EvmLogEntry
impl Unpin for EvmLogEntry
impl UnsafeUnpin for EvmLogEntry
impl UnwindSafe for EvmLogEntry
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