1 2 3 4
A string slice: `&str` A slice of strings: `&[String]` `&[String]` for example can be used to reference a subset of a `Vec<String>` while `&str` references part of a `String`.