RustのBox型
Box::new()
で十分なメモリをヒープ上に値を確保する
code:Rust
let t = (12, "eggs");
let b = Box::new(t); // bの型は
Box<(i32, &str)>
https://nilstrieb.github.io/posts/box-is-a-unique-type/