TIL that Rust has a (i) icon that shows relevant traits that a type implements. This is useful to understand that e.g. .iter() on a Vec<T> iterates with &T. https://doc.rust-lang.org/std/vec/struct.Vec.html#method.iter It looks like one of my bug reports was mentioned, so I'm delighted but wish I'd noticed earlier!