struct Point {
x: f64,
y: f64,
}
enum Shape {
Circle(Point, f64),
Rectangle(Point, Point),
}
let my_shape = Shape::Circle(Point { x: 0.0, y: 0.0 }, 10.0);
Je veux imprimer la circle
, qui est 10.0 ici.
J'ai essayé my_shape.last
et my_shape.second
, mais aucun n'a fonctionné.
Que dois-je faire pour imprimer 10.0 dans ce cas ?