タプル構造体2022/2/18 1:12:00 fn main() { struct Color(i32, i32, i32); //タプル構造体 let black = Color(0, 0, 0); println!("{}", black.0); //0 }