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
When we're processing client requests (say in provider), we keep processing data as Arc<some struct> this only happens to work because some struct implements Copy. This should be Arc<RefCell<some struct>> or <Arc<Cell<some struct>> instead.
The text was updated successfully, but these errors were encountered:
When we're processing client requests (say in provider), we keep processing data as
Arc<some struct>
this only happens to work becausesome struct
implementsCopy
. This should beArc<RefCell<some struct>>
or<Arc<Cell<some struct>>
instead.The text was updated successfully, but these errors were encountered: