add FlatOk trait to Result/Option suite

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk 2024-10-03 00:30:16 +00:00 committed by strawberry
parent 08a2fecc0e
commit a2e5c3d5d3
2 changed files with 36 additions and 1 deletions

View file

@ -1,4 +1,5 @@
mod debug_inspect;
mod flat_ok;
mod into_is_ok;
mod log_debug_err;
mod log_err;
@ -7,7 +8,7 @@ mod not_found;
mod unwrap_infallible;
pub use self::{
debug_inspect::DebugInspect, into_is_ok::IntoIsOk, log_debug_err::LogDebugErr, log_err::LogErr,
debug_inspect::DebugInspect, flat_ok::FlatOk, into_is_ok::IntoIsOk, log_debug_err::LogDebugErr, log_err::LogErr,
map_expect::MapExpect, not_found::NotFound, unwrap_infallible::UnwrapInfallible,
};