//! Module containing error handling logic. use std::io; /// The `crossterm` result type. pub type Result = std::result::Result; pub type ErrorKind = io::Error;