mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2025-06-28 00:14:50 +02:00
14 lines
392 B
Rust
14 lines
392 B
Rust
mod debug_inspect;
|
|
mod into_is_ok;
|
|
mod log_debug_err;
|
|
mod log_err;
|
|
mod map_expect;
|
|
mod not_found;
|
|
mod unwrap_infallible;
|
|
|
|
pub use self::{
|
|
debug_inspect::DebugInspect, into_is_ok::IntoIsOk, log_debug_err::LogDebugErr, log_err::LogErr,
|
|
map_expect::MapExpect, not_found::NotFound, unwrap_infallible::UnwrapInfallible,
|
|
};
|
|
|
|
pub type Result<T = (), E = crate::Error> = std::result::Result<T, E>;
|