Rust Initialiser la structure

struct Point {
	x: u32,
    y: u32,
}

let point = Point {x: 16, y: 711};

let { x, y } = point;
Leo