mirror of
https://github.com/girlbossceo/conduwuit.git
synced 2025-12-17 20:58:58 -05:00
add DebugInspect to Result move Result typedef into unit Signed-off-by: Jason Volk <jason@zemos.net>
6 lines
176 B
Rust
6 lines
176 B
Rust
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>;
|