pub trait MaybeSend: Send { }
MaybeSend is no-op on wasm and Send on non wasm.
MaybeSend
Send
On wasm, most types don’t implement Send because JS types can not sent between workers directly.