Enum graphene::EulerOrder
source · #[non_exhaustive]
pub enum EulerOrder {
Show 31 variants
Default,
Xyz,
Yzx,
Zxy,
Xzy,
Yxz,
Zyx,
Sxyz,
Sxyx,
Sxzy,
Sxzx,
Syzx,
Syzy,
Syxz,
Syxy,
Szxy,
Szxz,
Szyx,
Szyz,
Rzyx,
Rxyx,
Ryzx,
Rxzx,
Rxzy,
Ryzy,
Rzxy,
Ryxy,
Ryxz,
Rzxz,
Rxyz,
Rzyz,
}
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.
Default
Xyz
Yzx
Zxy
Xzy
Yxz
Zyx
Sxyz
Sxyx
Sxzy
Sxzx
Syzx
Syzy
Syxz
Syxy
Szxy
Szxz
Szyx
Szyz
Rzyx
Rxyx
Ryzx
Rxzx
Rxzy
Ryzy
Rzxy
Ryxy
Ryxz
Rzxz
Rxyz
Rzyz
Trait Implementations§
source§impl Clone for EulerOrder
impl Clone for EulerOrder
source§fn clone(&self) -> EulerOrder
fn clone(&self) -> EulerOrder
Returns a copy 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 EulerOrder
impl Debug for EulerOrder
source§impl Display for EulerOrder
impl Display for EulerOrder
source§impl Hash for EulerOrder
impl Hash for EulerOrder
source§impl Ord for EulerOrder
impl Ord for EulerOrder
source§fn cmp(&self, other: &EulerOrder) -> Ordering
fn cmp(&self, other: &EulerOrder) -> 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<EulerOrder> for EulerOrder
impl PartialEq<EulerOrder> for EulerOrder
source§fn eq(&self, other: &EulerOrder) -> bool
fn eq(&self, other: &EulerOrder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<EulerOrder> for EulerOrder
impl PartialOrd<EulerOrder> for EulerOrder
source§fn partial_cmp(&self, other: &EulerOrder) -> Option<Ordering>
fn partial_cmp(&self, other: &EulerOrder) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more