@@ -73,7 +73,7 @@ pub trait ToVector: Sized {
7373}
7474
7575/// Enumerates the axes in a [`Vector2`].
76- #[ derive( Copy , Clone , Debug , Eq , Ord , PartialEq , PartialOrd ) ]
76+ #[ derive( Copy , Clone , Eq , PartialEq , Ord , PartialOrd , Debug ) ]
7777#[ repr( i32 ) ]
7878pub enum Vector2Axis {
7979 /// The X axis.
@@ -117,7 +117,7 @@ impl FromGodot for Vector2Axis {
117117
118118/// Enumerates the axes in a [`Vector3`].
119119// TODO auto-generate this, alongside all the other builtin type's enums
120- #[ derive( Copy , Clone , Debug , Eq , Ord , PartialEq , PartialOrd ) ]
120+ #[ derive( Copy , Clone , Eq , PartialEq , Ord , PartialOrd , Debug ) ]
121121#[ repr( i32 ) ]
122122pub enum Vector3Axis {
123123 /// The X axis.
@@ -164,7 +164,7 @@ impl FromGodot for Vector3Axis {
164164// ----------------------------------------------------------------------------------------------------------------------------------------------
165165
166166/// Enumerates the axes in a [`Vector4`].
167- #[ derive( Copy , Clone , Debug , Eq , Ord , PartialEq , PartialOrd ) ]
167+ #[ derive( Copy , Clone , Eq , PartialEq , Ord , PartialOrd , Debug ) ]
168168#[ repr( i32 ) ]
169169pub enum Vector4Axis {
170170 /// The X axis.
0 commit comments