1/// The state of the `CrossTerm` instance.
2#[derive(Copy, Clone, Debug, PartialEq, Eq)]
3#[allow(clippy::exhaustive_enums)]
4pub enum State {
5/// The TUI is new and unchanged.
6New,
7/// The TUI is in the normal mode.
8Normal,
9/// The TUI has ended.
10Ended,
11}