pub trait EventAttributeIndexExt: Sealed {
type Key;
type Value;
// Required methods
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.