logo
pub trait EventAttributeIndexExt: Sealed {
    type Key;
    type Value;
    fn index(self) -> (Self::Key, Self::Value, bool);
fn no_index(self) -> (Self::Key, Self::Value, bool); }
Expand description

Adds convenience methods to tuples for more ergonomic EventAttribute construction.

See Event::new for details.

Associated Types

Required methods

Indicate that this key/value pair should be indexed by Tendermint.

Indicate that this key/value pair should not be indexed by Tendermint.

Implementations on Foreign Types

Implementors