1 2 3 4 5 6
/// Errors produced by the TUI. #[derive(Debug, thiserror::Error)] pub enum TuiError { #[error("I/O error: {0}")] Io(#[from] std::io::Error), }