【Rust】CPU数を取得する【並列処理】

num_cpus = “1.0”

fn main() {

    let num = num_cpus::get();
    println!("{}", num);

}