pub trait EventSpec {
    type Event;

    fn event(&self) -> Self::Event;
    fn timestamp(&self) -> Timestamp;
}

Required Associated Types

Required Methods

Implementors