termal_core 5.0.0

This library contains implementation for the termal library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// Change the state of the terminal.
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum StateChange {
    /// Paste has started. Treat the input verbatim.
    ///
    /// Can be received only if enabled with
    /// [`crate::codes::ENABLE_BRACKETED_PASTE_MODE`].
    BracketedPasteStart,
    /// Paste has ended. Stop treating the input verbatim.
    ///
    /// Can be received only if enabled with
    /// [`crate::codes::ENABLE_BRACKETED_PASTE_MODE`].
    BracketedPasteEnd,
}