Skip to content

Instantly share code, notes, and snippets.

@gembin
Last active May 5, 2022 05:35
Show Gist options
  • Select an option

  • Save gembin/7b9b16d19568aedfebf8af35d7238b15 to your computer and use it in GitHub Desktop.

Select an option

Save gembin/7b9b16d19568aedfebf8af35d7238b15 to your computer and use it in GitHub Desktop.
Rust: code snippets

Convert a Vec to Vec<&str>

let v: Vec<&str> = v.iter().map(AsRef::as_ref).collect();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment