//! A reusable `Pin<Box<dyn Future<Output = T> + Send>>`.
//!
//! This lets you replace the future stored in the box without reallocating
//! when the size and alignment permits it.
//!
//! This code was extracted from [tokio-util] crate.
//!
//! [tokio-util]: https://docs.rs/tokio-util
extern crate alloc;
pub use crateReusableBoxFuture;
pub use crateReusableLocalBoxFuture;