1 2 3 4 5 6 7 8 9 10
pub struct Size { pub width: f64, pub height: f64, } impl Size { pub fn new(width: f64, height: f64) -> Self { Size { width, height } } }