#[repr(u8)]pub enum SignedAxis {
NegX = 0,
PosX = 1,
NegY = 2,
PosY = 3,
NegZ = 4,
PosZ = 5,
}
Expand description
Either the -X, +X, -Y, +Y, -Z, or +Z axis.
Variants§
Implementations§
Source§impl SignedAxis
impl SignedAxis
Trait Implementations§
Source§impl Clone for SignedAxis
impl Clone for SignedAxis
Source§fn clone(&self) -> SignedAxis
fn clone(&self) -> SignedAxis
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 SignedAxis
impl Debug for SignedAxis
Source§impl PartialEq for SignedAxis
impl PartialEq for SignedAxis
impl Copy for SignedAxis
impl Eq for SignedAxis
impl StructuralPartialEq for SignedAxis
Auto Trait Implementations§
impl Freeze for SignedAxis
impl RefUnwindSafe for SignedAxis
impl Send for SignedAxis
impl Sync for SignedAxis
impl Unpin for SignedAxis
impl UnwindSafe for SignedAxis
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