mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2025-07-14 14:46:33 +02:00
13 lines
354 B
Rust
13 lines
354 B
Rust
mod debug_inspect;
|
|
mod log_debug_err;
|
|
mod log_err;
|
|
mod map_expect;
|
|
mod not_found;
|
|
mod unwrap_infallible;
|
|
|
|
pub use self::{
|
|
debug_inspect::DebugInspect, 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>;
|