use Stream as FutStream;
use Future as StdFuture;
use Pin;
cratedispatch_to_submodules!;
/// A future that is `Send` on native, but `!Send` on web
/// A stream that is `Send` on native, but `!Send` on web
/// An owned dynamically typed `Future` for use in cases where you can’t statically type your result or need to add some indirection.
///
/// Automatically `Send` on non-wasm32, and not `Send` on wasm32.
pub type BoxFuture<'a, T> = ;
/// An owned dynamically typed `Stream` for use in cases where you can’t statically type your result or need to add some indirection.
///
/// Automatically `Send` on non-wasm32, and not `Send` on wasm32.
pub type BoxStream<'a, T> = ;