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.

19 lines
498 B
Rust
Raw Normal View History

2024-09-01 01:53:22 +00:00
mod debug_inspect;
2024-10-31 07:33:16 +00:00
mod filter;
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-11-11 20:33:56 +00:00
mod unwrap_or_err;
2024-09-01 01:53:22 +00:00
pub use self::{
debug_inspect::DebugInspect, filter::Filter, flat_ok::FlatOk, into_is_ok::IntoIsOk,
log_debug_err::LogDebugErr, log_err::LogErr, map_expect::MapExpect, not_found::NotFound,
unwrap_infallible::UnwrapInfallible, unwrap_or_err::UnwrapOrErr,
};
2024-09-01 01:53:22 +00:00
pub type Result<T = (), E = crate::Error> = std::result::Result<T, E>;