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
As in #74 , create or clone Bytes involves atomic operation, whose costs cannot be ignored if performs frequently (e.g. in iterators). Unnecessary Bytes should be replaced with Vec<u8> or &[u8].
The text was updated successfully, but these errors were encountered:
As in #74 , create or clone
Bytes
involves atomic operation, whose costs cannot be ignored if performs frequently (e.g. in iterators). UnnecessaryBytes
should be replaced withVec<u8>
or&[u8]
.The text was updated successfully, but these errors were encountered: