rat-salsa 4.0.3

ratatui widgets and a crossterm event-loop
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// Timer event.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct TimerEvent(pub crate::timer::TimeOut);

/// Event sent immediately after rendering.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct RenderedEvent;

/// Event sent immediately before quitting the application.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct QuitEvent;