result-transformer-flow 0.0.2

Traits, macros and utilities for transforming Result values.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Steps that branch the execution flow based on a condition.
//!
//! Each step evaluates a predicate and delegates to different flows for the
//! `true` and `false` cases. Variants exist for branching on `Ok` values,
//! `Err` values or the entire `Result`.

mod err_if_step_async;
mod ok_if_step_async;
mod result_if_step_async;

pub use err_if_step_async::ErrIfStepAsync;
pub use ok_if_step_async::OkIfStepAsync;
pub use result_if_step_async::ResultIfStepAsync;