pub type QueueFuture<T> = Pin<Box<dyn Future<Output = Result<T, QueueError>> + Send + 'static>>;
pub struct QueueFuture<T> { /* private fields */ }