display/testutil/
state.rs

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.
6	New,
7	/// The TUI is in the normal mode.
8	Normal,
9	/// The TUI has ended.
10	Ended,
11}