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
Determining whether a trait is sealed requires determining whether any of its supertraits in the same crate are sealed. If checking traits' sealed status is slow, we may be able to cache those lookups.
Doing this while keeping the adapter and IndexedCrate types Send + Sync may be a bit of a challenge. Parallel hashmaps tend to introduce drop glue, which causes lifetime problems.
The text was updated successfully, but these errors were encountered:
Determining whether a trait is sealed requires determining whether any of its supertraits in the same crate are sealed. If checking traits' sealed status is slow, we may be able to cache those lookups.
Doing this while keeping the adapter and
IndexedCrate
typesSend + Sync
may be a bit of a challenge. Parallel hashmaps tend to introduce drop glue, which causes lifetime problems.The text was updated successfully, but these errors were encountered: