//! 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`.
pub use ErrMapStep;
pub use OkMapStep;
pub use ResultMapBothBindStep;
pub use ResultMapBothStep;
pub use ResultMapStep;