Files
continuwuity/src/core/utils/result.rs
T

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

16 lines
422 B
Rust
Raw Normal View History

2024-09-01 01:53:22 +00:00
mod debug_inspect;
2024-10-03 00:30:16 +00:00
mod flat_ok;
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;
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::{
2024-10-03 00:30:16 +00:00
debug_inspect::DebugInspect, flat_ok::FlatOk, into_is_ok::IntoIsOk, log_debug_err::LogDebugErr, log_err::LogErr,
2024-09-30 06:46:54 +00:00
map_expect::MapExpect, 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>;