1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
use crossterm_utils::Result; /// This command is used for enabling and disabling raw mode for the terminal. pub struct RawModeCommand; impl RawModeCommand { pub fn new() -> Self { RawModeCommand } /// Enables raw mode. pub fn enable(&mut self) -> Result<()> { crossterm_utils::sys::unix::enable_raw_mode()?; Ok(()) } /// Disables raw mode. pub fn disable(&mut self) -> Result<()> { crossterm_utils::sys::unix::disable_raw_mode()?; Ok(()) } }