2024-09-01 01:53:22 +00:00
|
|
|
mod debug_inspect;
|
2024-09-30 06:46:54 +00:00
|
|
|
mod into_is_ok;
|
2024-09-08 04:39:27 +00:00
|
|
|
mod log_debug_err;
|
|
|
|
|
mod log_err;
|
2024-09-01 01:53:22 +00:00
|
|
|
mod map_expect;
|
2024-09-12 00:01:25 +00:00
|
|
|
mod not_found;
|
2024-09-13 07:40:22 +00:00
|
|
|
mod unwrap_infallible;
|
2024-09-01 01:53:22 +00:00
|
|
|
|
2024-09-12 00:01:25 +00:00
|
|
|
pub use self::{
|
2024-09-30 06:46:54 +00:00
|
|
|
debug_inspect::DebugInspect, into_is_ok::IntoIsOk, log_debug_err::LogDebugErr, log_err::LogErr,
|
|
|
|
|
map_expect::MapExpect, not_found::NotFound, unwrap_infallible::UnwrapInfallible,
|
2024-09-12 00:01:25 +00:00
|
|
|
};
|
2024-09-01 01:53:22 +00:00
|
|
|
|
|
|
|
|
pub type Result<T = (), E = crate::Error> = std::result::Result<T, E>;
|