struct Point { x: T, y: T, } fn main() { let i = Point { x: 5, y: 10 }; let f = Point { x: 1.0, y: 4.0 }; }