Strings can be sliced using the index operator:
let slice = &"Golden Eagle"[..6];
println!("{}", slice);
The syntax is generally v[M..N], where M < N. This will return a slice from M up to, but not including, N. There are also some more sugary syntax, like [..N] (everything up to N), [N..] (everything from N and forwards) and [..] (everything).
It’s the same for String, as well as vector/array types.