pub trait EventIter: Send { // Required method fn next(&mut self) -> Result<Option<(u64, Vec<u8>)>, AzothError>; }
Iterator over events in the canonical store
Get the next event
Returns None when iteration is complete