Files
continuwuity/src/core/result.rs
T

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

9 lines
253 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;
2024-09-08 04:39:27 +00:00
pub use self::{debug_inspect::DebugInspect, log_debug_err::LogDebugErr, log_err::LogErr, map_expect::MapExpect};
2024-09-01 01:53:22 +00:00
pub type Result<T = (), E = crate::Error> = std::result::Result<T, E>;