#[repr(u32)]pub enum PhysicsServerBodyAxis {
LinearX = 1,
LinearY = 2,
LinearZ = 4,
AngularX = 8,
AngularY = 16,
AngularZ = 32,
}Variants§
Trait Implementations§
Source§impl Clone for PhysicsServerBodyAxis
impl Clone for PhysicsServerBodyAxis
Source§fn clone(&self) -> PhysicsServerBodyAxis
fn clone(&self) -> PhysicsServerBodyAxis
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 PhysicsServerBodyAxis
Source§impl Debug for PhysicsServerBodyAxis
impl Debug for PhysicsServerBodyAxis
impl Eq for PhysicsServerBodyAxis
Source§impl Hash for PhysicsServerBodyAxis
impl Hash for PhysicsServerBodyAxis
Source§impl PartialEq for PhysicsServerBodyAxis
impl PartialEq for PhysicsServerBodyAxis
Source§fn eq(&self, other: &PhysicsServerBodyAxis) -> bool
fn eq(&self, other: &PhysicsServerBodyAxis) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PhysicsServerBodyAxis
Auto Trait Implementations§
impl Freeze for PhysicsServerBodyAxis
impl RefUnwindSafe for PhysicsServerBodyAxis
impl Send for PhysicsServerBodyAxis
impl Sync for PhysicsServerBodyAxis
impl Unpin for PhysicsServerBodyAxis
impl UnsafeUnpin for PhysicsServerBodyAxis
impl UnwindSafe for PhysicsServerBodyAxis
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