8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The loom::sync::Arc type needs to add T: ?Sized to allow Arc<dyn Any>.
loom::sync::Arc
T: ?Sized
Arc<dyn Any>
It's mostly just adding bounds, but it does mean into_raw and from_raw need to be carefully adjusted, since ?Sized types need to be the last field on Inner.
into_raw
from_raw
?Sized
Inner