pub trait App {
    fn handle_event(&mut self, event: Event) -> AppResponse;
    fn draw(&mut self, rect: Rect, buffer: &mut Buffer);
}

Required Methods

Implementors