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
14
15
16
17
//! Mapping steps that convert a value into another value.
//!
//! Each step applies a closure to the input to produce a new value. Variants
//! exist for mapping only the success variant, only the error variant or both
//! sides of a `Result`.

mod err_map_step_async;
mod ok_map_step_async;
mod result_map_both_bind_step_async;
mod result_map_both_step_async;
mod result_map_step_async;

pub use err_map_step_async::ErrMapStepAsync;
pub use ok_map_step_async::OkMapStepAsync;
pub use result_map_both_bind_step_async::ResultMapBothBindStepAsync;
pub use result_map_both_step_async::ResultMapBothStepAsync;
pub use result_map_step_async::ResultMapStepAsync;