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
//! Asynchronous counterparts to the synchronous flows.
//!
//! can be awaited.  The implementation relies solely on `async fn` and keeps
//! overhead minimal. For best performance you may still implement your own
//! `Async*Transformer` traits instead of chaining these flows.

mod async_err_flow;
mod async_ok_flow;
mod async_result_flow;

pub use async_err_flow::*;
pub use async_ok_flow::*;
pub use async_result_flow::*;