1 2 3 4 5 6 7 8
pub mod ewma; pub mod little; pub mod sharded; pub mod system; use std::{future::Future, pin::Pin}; pub(crate) type BoxFuture<T> = Pin<Box<dyn Future<Output = T> + Send>>;