You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use explicit Send/Sync rather than MaybeSend/MaybeSync
We use `MaybeSend` + `MaybeSync` in rust to only enable
`Send`+`Sync` bounds if built with `std`, but there's no reason to
bother with this in bindings, even for `no_std` builds. As the
bindings generator doesn't currently have logic to identify traits
like these as "synonyms" for `Send`+`Sync`, we just use
`Send`+`Sync` explicitly.
0 commit comments