#[non_exhaustive]pub enum RotateAxis {
XAxis,
YAxis,
ZAxis,
}
Expand description
Axis of a rotation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for RotateAxis
impl Clone for RotateAxis
Source§fn clone(&self) -> RotateAxis
fn clone(&self) -> RotateAxis
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RotateAxis
impl Debug for RotateAxis
Source§impl Display for RotateAxis
impl Display for RotateAxis
Source§impl<'a> FromValue<'a> for RotateAxis
impl<'a> FromValue<'a> for RotateAxis
Source§unsafe fn from_value(value: &Value) -> Self
unsafe fn from_value(value: &Value) -> Self
Safety Read more
Source§impl<'a> FromValueOptional<'a> for RotateAxis
impl<'a> FromValueOptional<'a> for RotateAxis
Source§impl Hash for RotateAxis
impl Hash for RotateAxis
Source§impl Ord for RotateAxis
impl Ord for RotateAxis
Source§fn cmp(&self, other: &RotateAxis) -> Ordering
fn cmp(&self, other: &RotateAxis) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for RotateAxis
impl PartialEq for RotateAxis
Source§impl PartialOrd for RotateAxis
impl PartialOrd for RotateAxis
Source§impl SetValue for RotateAxis
impl SetValue for RotateAxis
Source§impl StaticType for RotateAxis
impl StaticType for RotateAxis
Source§fn static_type() -> Type
fn static_type() -> Type
Returns the type identifier of
Self
.impl Copy for RotateAxis
impl Eq for RotateAxis
impl StructuralPartialEq for RotateAxis
Auto Trait Implementations§
impl Freeze for RotateAxis
impl RefUnwindSafe for RotateAxis
impl Send for RotateAxis
impl Sync for RotateAxis
impl Unpin for RotateAxis
impl UnwindSafe for RotateAxis
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> ToSendValue for T
impl<T> ToSendValue for T
Source§fn to_send_value(&self) -> SendValue
fn to_send_value(&self) -> SendValue
Returns a
SendValue
clone of self
.