result-transformer-core 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
//! Collection of synchronous transformer traits.
//!
//! These traits are intended for lightweight conversions that do not require
//! asynchronous operations. They form the foundation of the higher level flow
//! utilities provided by other crates in this workspace.

#[cfg(feature = "sync-macros")]
pub mod macros;

mod err_transformer;
mod ok_transformer;
mod result_transformer;

pub use err_transformer::ErrTransformer;
pub use ok_transformer::OkTransformer;
pub use result_transformer::ResultTransformer;