pub struct EvmAbiEvent {
pub name: String,
pub inputs: Vec<(String, EvmAbiType, bool)>,
pub is_anonymous: bool,
}Expand description
EVM ABI event
Fields§
§name: String§inputs: Vec<(String, EvmAbiType, bool)>§is_anonymous: boolTrait Implementations§
Source§impl Clone for EvmAbiEvent
impl Clone for EvmAbiEvent
Source§fn clone(&self) -> EvmAbiEvent
fn clone(&self) -> EvmAbiEvent
Returns a duplicate of the value. Read more
1.0.0 · 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 EvmAbiEvent
impl Debug for EvmAbiEvent
Auto Trait Implementations§
impl Freeze for EvmAbiEvent
impl RefUnwindSafe for EvmAbiEvent
impl Send for EvmAbiEvent
impl Sync for EvmAbiEvent
impl Unpin for EvmAbiEvent
impl UnsafeUnpin for EvmAbiEvent
impl UnwindSafe for EvmAbiEvent
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