//! Future related utilities. //! //! *This module is only available if Syrette is built with the "async" feature.* #![allow(clippy::module_name_repetitions)] use std::future::Future; use std::pin::Pin; /// A boxed future. pub type BoxFuture<'a, T> = Pin + Send + 'a>>;