Files
continuwuity/src/core/result.rs
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
354 B
Rust
Raw Normal View History

2024-09-01 01:53:22 +00:00
mod debug_inspect;
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;
mod not_found;
2024-09-13 07:40:22 +00:00
mod unwrap_infallible;
2024-09-01 01:53:22 +00:00
pub use self::{
debug_inspect::DebugInspect, log_debug_err::LogDebugErr, log_err::LogErr, map_expect::MapExpect,
2024-09-13 07:40:22 +00:00
not_found::NotFound, unwrap_infallible::UnwrapInfallible,
};
2024-09-01 01:53:22 +00:00
pub type Result<T = (), E = crate::Error> = std::result::Result<T, E>;