1 2 3 4 5 6
#![forbid(unsafe_code)] pub use crate::terminal::Terminal; pub type Error = std::io::Error; pub type Result<T> = std::result::Result<T, Error>;