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
Otherwise passing a Vec<String> requires iterating over every value, allocating a new Vec that borrows from the previous, passing that, then discarding the Vec. Alternatively one can only leak the value.
This change should be backwards compatible, as &str implements AsRef<str>.
The text was updated successfully, but these errors were encountered:
Otherwise passing a
Vec<String>
requires iterating over every value, allocating a new Vec that borrows from the previous, passing that, then discarding the Vec. Alternatively one can only leak the value.This change should be backwards compatible, as
&str
implementsAsRef<str>
.The text was updated successfully, but these errors were encountered: