1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#[derive(Debug)] pub struct Rect { x: f64, y: f64, width: f64, height: f64, } impl Rect { pub fn new(x: f64, y: f64, width: f64, height: f64) -> Self { Rect { x, y, width, height, } } }