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
Shared refs like MapRef, ArrayRef etc. should implement Send + Sync traits. Currently it's not a thing due to internal representation MapRef(NonNull<Branch>) (non-null pointers don't implement these traits). We could change that to MapRef(Weak<Branch>) which would be already aligned with how Arc<Branch> is stored in within document store.
The text was updated successfully, but these errors were encountered:
Shared refs like
MapRef
,ArrayRef
etc. should implementSend + Sync
traits. Currently it's not a thing due to internal representationMapRef(NonNull<Branch>)
(non-null pointers don't implement these traits). We could change that toMapRef(Weak<Branch>)
which would be already aligned with howArc<Branch>
is stored in within document store.The text was updated successfully, but these errors were encountered: