Trait PlatformSendFuture

Source
pub trait PlatformSendFuture: Future + PlatformSend { }
Expand description

A future that requires Send on native platforms, but not on WASM.

Implementors§

Source§

impl<F, O> PlatformSendFuture for F
where F: Future<Output = O> + PlatformSend,