conduwuit/src/core/result.rs

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

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>;