1 2 3 4 5 6 7 8
//! Module containing error handling logic. use std::io; /// The `crossterm` result type. pub type Result<T> = std::result::Result<T, ErrorKind>; pub type ErrorKind = io::Error;