#[non_exhaustive]#[repr(i32)]pub enum TransformComponent {
Show 13 variants
Tx = 0,
Ty = 1,
Tz = 2,
Rx = 3,
Ry = 4,
Rz = 5,
Qx = 6,
Qy = 7,
Qz = 8,
Qw = 9,
Sx = 10,
Sy = 11,
Sz = 12,
}
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 TransformComponent
impl Clone for TransformComponent
Source§fn clone(&self) -> TransformComponent
fn clone(&self) -> TransformComponent
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 TransformComponent
impl Debug for TransformComponent
Source§impl Hash for TransformComponent
impl Hash for TransformComponent
Source§impl PartialEq for TransformComponent
impl PartialEq for TransformComponent
impl Copy for TransformComponent
impl Eq for TransformComponent
impl StructuralPartialEq for TransformComponent
Auto Trait Implementations§
impl Freeze for TransformComponent
impl RefUnwindSafe for TransformComponent
impl Send for TransformComponent
impl Sync for TransformComponent
impl Unpin for TransformComponent
impl UnwindSafe for TransformComponent
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