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
{{ message }}
This repository was archived by the owner on Nov 8, 2023. It is now read-only.
you take the argument as an allocated Vec, but you only iterate over references of its members via .iter, afterwards freeing that allocation. Better to either take a &[T] as above, or consume the vector via into_iter (or just … in topics as that will also consume the vec)