pub trait MaybeSend: Send { }
Expand description

An extension trait that enforces Send only on native platforms.

Useful to write cross-platform async code!

Implementors§

source§

impl<T> MaybeSend for Twhere T: Send,