1 2 3 4 5 6 7 8 9 10
//! Error types. pub mod error; pub mod result; pub use error::Error; pub use result::Result; #[cfg(test)] mod tests;