What is the key difference between a tuple struct and a regular struct in Rust?struct Point(i32, i32); // tuple struct struct Pixel { x: i32, y: i32 } // regular struct