1mod lang;
23#[path = "error.rs"]
4mod error_impl;
5mod helpers;
67pub use error_impl::Error;
8pub(crate) use helpers::{check_max_limit, map_val_error};
910/// Result type alias for operations that can return an `Error`.
11pub type Result<T> = core::result::Result<T, Error>;