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
18
//! Steps that record values using the [`log`] crate.
//!
//! Each step logs the received value through the `log` facade and forwards it
//! unchanged to the next step. They are available only when the `logging`
//! feature is enabled. Output level and formatting are configured via
//! [`LogConfig`].

mod err_log_tap_step;
mod log_config;
mod ok_log_tap_step;
mod result_log_both_step;
mod result_log_tap_step;

pub use err_log_tap_step::ErrLogTapStep;
pub use log_config::LogConfig;
pub use ok_log_tap_step::OkLogTapStep;
pub use result_log_both_step::ResultLogTapBothStep;
pub use result_log_tap_step::ResultLogTapStep;