pub trait FromEvent: Sized {
    fn from_event(e: Event) -> Option<Self>;
}

Required Methods

Implementors