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
Prevent `CBox` from being opaquable if it isn't `Send`. This effectively
works around #18, albeit does not solve it. This will prevent `!Send`
futures from being turned into CGlue's opaque, `CBox: Send`.
Prevent `CBox` from being opaquable if it isn't `Send`. This effectively
works around #18, albeit does not solve it. This will prevent `!Send`
futures from being turned into CGlue's opaque, `CBox: Send`.
Prevent `CBox` from being opaquable if it isn't `Send`. This effectively
works around #18, albeit does not solve it. This will prevent `!Send`
futures from being turned into CGlue's opaque, `CBox: Send`.
Currently
Opaquable
trait is error prone, because it may allow!Send
type to be opaqued down to aSend
box. This is an equivalent of a soundness hole.The text was updated successfully, but these errors were encountered: