macro_rules! vec_from { ($($item:expr),* $(,)?) => { ... }; }
Combines the vector literal with .into().
.into()
use tb::vec_from; let a: Vec<String> = vec_from!["a", "b", "c", "d"];