I can convert Vec to Vec<&str> this way:
Vec
Vec<&str>
let mut items = Vec::<&str>::new(); for item in &ano
another_items.iter().map(|item| item.deref()).collect::>()
To use deref() you must add using use std::ops::Deref
deref()
use std::ops::Deref