#Rust https://doc.rust-lang.org/book/ch05-01-defining-structs.html#using-tuple-structs-without-named-fields-to-create-different-types [[フィールド (Rust)|フィールド]]には名前を持たない[[Rust]]の構造体。各[[フィールド (Rust)|フィールド]]の型と順番が一致しても別の型として扱われる。 ```rust struct Color(i32, i32, i32); ```