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 creating an OwnedValue from a String we store it as a Token(String), so each clone would then mean cloning the inner String value. We should store something like Arc<str> instead.
The text was updated successfully, but these errors were encountered:
When creating an
OwnedValue
from aString
we store it as aToken(String)
, so each clone would then mean cloning the innerString
value. We should store something likeArc<str>
instead.The text was updated successfully, but these errors were encountered: