[][src]Struct ethcontract::prelude::Event

pub struct Event<T> {
    pub data: EventData<T>,
    pub meta: Option<EventMetadata>,
}

A contract event

Fields

data: EventData<T>

The decoded log data.

meta: Option<EventMetadata>

The additional metadata for the event. Note that this is not always available if these logs are pending. This can happen if the to_block option was set to BlockNumber::Pending.

Methods

impl<T> Event<T>[src]

pub fn inner_data(&self) -> &T[src]

Get a reference the underlying event data regardless of whether the event was added or removed.

pub fn is_added(&self) -> bool[src]

Gets a bool representing if the event was added.

pub fn is_removed(&self) -> bool[src]

Gets a bool representing if the event was removed.

pub fn added(self) -> Option<T>[src]

Get the underlying event data if the event was added, None otherwise.

pub fn removed(self) -> Option<T>[src]

Get the underlying event data if the event was removed, None otherwise.

pub fn map<U, F>(self, f: F) -> Event<U> where
    F: FnOnce(T) -> U, 
[src]

Maps the inner data of an event into some other data.

Trait Implementations

impl<T: Clone> Clone for Event<T>[src]

impl<T: Debug> Debug for Event<T>[src]

impl<T: Eq> Eq for Event<T>[src]

impl<T: PartialEq> PartialEq<Event<T>> for Event<T>[src]

impl<T> StructuralEq for Event<T>[src]

impl<T> StructuralPartialEq for Event<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Event<T> where
    T: RefUnwindSafe

impl<T> Send for Event<T> where
    T: Send

impl<T> Sync for Event<T> where
    T: Sync

impl<T> Unpin for Event<T> where
    T: Unpin

impl<T> UnwindSafe for Event<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,