//! Collection of asynchronous transformer traits.
//!
//! These traits mirror the synchronous variants found under [`crate::sync`]
//! but expose `async` methods. These traits work on stable Rust using
//! `async fn` and do not require external crates for emulation.
pub use AsyncErrTransformer;
pub use AsyncOkTransformer;
pub use AsyncResultTransformer;