rat-salsa 4.0.3

ratatui widgets and a crossterm event-loop
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// Empty placeholder for [run_tui](crate::run_tui).
pub fn init<State, Global, Error>(
    _state: &mut State, //
    _ctx: &mut Global,
) -> Result<(), Error> {
    Ok(())
}

/// Empty placeholder for [run_tui](crate::run_tui).
pub fn error<Global, State, Event, Error>(
    _error: Error,
    _state: &mut State,
    _ctx: &mut Global,
) -> Result<crate::Control<Event>, Error> {
    Ok(crate::Control::Continue)
}