pub type DefaultTerminal = Terminal<UncursesBackend<Stdin, Stdout>>;Expand description
Default terminal type returned by the setup helpers.
This is a [Terminal] whose backend is UncursesBackend over the
process standard input and output handles. Use this alias for APIs that
accept the value returned by init, try_init,
init_with_options, or try_init_with_options.
The alias itself performs no setup and cannot fail.
Aliased Typeยง
pub struct DefaultTerminal { /* private fields */ }