1//! A collection of errors specific to this crate's types that can occur when using them. 2 3mod macros; 4 5#[allow(unused_imports)] 6pub use macros::*; 7 8mod parseint; 9pub use parseint::*; 10 11mod tryfrom; 12pub use tryfrom::*;