Trait PlatformSend
Source pub trait PlatformSend: PlatformSendInner { }
Expand description
Implies Send only on native platforms, but not on WASM.
In other words:
- On native this gets implemented by all types that implement
Send.
- On WASM this gets implemented by all types, regardless of
Send.