Files
continuwuity/src/core/result.rs
T

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

7 lines
176 B
Rust
Raw Normal View History

2024-09-01 01:53:22 +00:00
mod debug_inspect;
mod map_expect;
pub use self::{debug_inspect::DebugInspect, map_expect::MapExpect};
pub type Result<T = (), E = crate::Error> = std::result::Result<T, E>;