/// Different ways to clear the terminal buffer.
#[cfg_attr(feature ="serde",derive(Serialize, Deserialize))]#[derive(Copy, Clone, Debug, PartialEq, Eq, Ord, PartialOrd, Hash)]pubenumClear{/// All cells.
All,/// All cells from the cursor position downwards.
FromCursorDown,/// All cells from the cursor position upwards.
FromCursorUp,/// All cells at the cursor row.
CurrentLine,/// All cells from the cursor position until the new line.
UntilNewLine,}