#[repr(u32)]pub enum Vector3Axis {
X = 0,
Y = 1,
Z = 2,
}Variants§
Trait Implementations§
Source§impl Clone for Vector3Axis
impl Clone for Vector3Axis
Source§fn clone(&self) -> Vector3Axis
fn clone(&self) -> Vector3Axis
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for Vector3Axis
Source§impl Debug for Vector3Axis
impl Debug for Vector3Axis
impl Eq for Vector3Axis
Source§impl PartialEq for Vector3Axis
impl PartialEq for Vector3Axis
Source§fn eq(&self, other: &Vector3Axis) -> bool
fn eq(&self, other: &Vector3Axis) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for Vector3Axis
Auto Trait Implementations§
impl Freeze for Vector3Axis
impl RefUnwindSafe for Vector3Axis
impl Send for Vector3Axis
impl Sync for Vector3Axis
impl Unpin for Vector3Axis
impl UnsafeUnpin for Vector3Axis
impl UnwindSafe for Vector3Axis
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