Struct ethabi::Event [] [src]

pub struct Event {
    pub name: String,
    pub inputs: Vec<EventParam>,
    pub anonymous: bool,
}

Contract event.

Fields

Event name.

Event input.

If anonymous, event cannot be found using from filter.

Methods

impl Event
[src]

[src]

Event signature

[src]

Creates topic filter

[src]

Parses RawLog and retrieves all log params from it.

Trait Implementations

impl Clone for Event
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Event
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for Event
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.