dbc_rs/error/
mod.rs

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