Box::new()
Rustlet t = (12, "eggs"); let b = Box::new(t); // bの型は`Box<(i32, &str)>`
Box
rustfn main() { let x = Box::new(42); println!("{}", x); } // `x` がスコープを抜けるとメモリが解放される