use std::{future::Future, pin::Pin}; pub(crate) type LocalBoxFuture<'a, T> = Pin + 'a>>; pub(crate) type BoxFuture<'a, T> = Pin + Send + 'a>>;