推断类型

语法
推断类型 : _

推断类型是通过周围可用信息让编译器尽可能地推断类型。 不能用于条目签名中。这通常在泛型参数中使用:

#![allow(unused)]
fn main() {
let x: Vec<_> = (0..10).collect();
}