cdrs_tokio/
future.rs

1/// An owned dynamically typed `Future` for use in cases where you can't
2/// statically type your result or need to add some indirection.
3pub type BoxFuture<'a, T> = futures::future::BoxFuture<'a, T>;