pub trait MaybeSend: Send { }
Available on non-WebAssembly only.
Expand description

An extension trait that enforces Send only on native platforms.

Useful for writing cross-platform async code!

Implementors§

source§

impl<T> MaybeSend for T
where T: Send,