mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2026-05-26 20:49:55 +00:00
2709995f84
add DebugInspect to Result move Result typedef into unit Signed-off-by: Jason Volk <jason@zemos.net>
7 lines
176 B
Rust
7 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>;
|