//! Steps that inspect values without modifying them.
//!
//! They are primarily useful for debugging or logging. A user-provided
//! closure receives a reference to the current value, performs side effects
//! and then forwards the original value to the next step.
pub use ErrInspectStep;
pub use OkInspectStep;
pub use ResultInspectBothStep;
pub use ResultInspectStep;