pub trait Event: SealedEvent { }
Expand description

This is trait that all Events share

This trait is sealed to prevent implementation. The only way to implement a new Event is by implementing CustomEvent

Implementors§

source§

impl<T: SealedEvent> Event for T