[][src]Enum ethabi::Topic

pub enum Topic<T> {
    Any,
    OneOf(Vec<T>),
    This(T),
}

Acceptable topic possibilities.

Variants

Any

Match any.

OneOf(Vec<T>)

Match any of the hashes.

This(T)

Match only this hash.

Methods

impl<T> Topic<T>[src]

pub fn map<F, O>(self, f: F) -> Topic<O> where
    F: Fn(T) -> O, 
[src]

Map

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

Returns true if topic is empty (Topic::Any)

Trait Implementations

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

impl<T> Default for Topic<T>[src]

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

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

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

impl<T> Into<Vec<T>> for Topic<T>[src]

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

impl<T> Index<usize> for Topic<T>[src]

type Output = T

The returned type after indexing.

impl Serialize for Topic<Hash>[src]

Auto Trait Implementations

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

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

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.