#[repr(u32)]pub enum PhysicsServerBodyParameter {
BodyParamBounce = 0,
BodyParamFriction = 1,
BodyParamMass = 2,
BodyParamGravityScale = 3,
BodyParamLinearDamp = 4,
BodyParamAngularDamp = 5,
BodyParamMax = 6,
}Variants§
BodyParamBounce = 0
BodyParamFriction = 1
BodyParamMass = 2
BodyParamGravityScale = 3
BodyParamLinearDamp = 4
BodyParamAngularDamp = 5
BodyParamMax = 6
Trait Implementations§
Source§impl Clone for PhysicsServerBodyParameter
impl Clone for PhysicsServerBodyParameter
Source§fn clone(&self) -> PhysicsServerBodyParameter
fn clone(&self) -> PhysicsServerBodyParameter
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 PhysicsServerBodyParameter
impl Debug for PhysicsServerBodyParameter
Source§impl Hash for PhysicsServerBodyParameter
impl Hash for PhysicsServerBodyParameter
impl Copy for PhysicsServerBodyParameter
impl Eq for PhysicsServerBodyParameter
impl StructuralPartialEq for PhysicsServerBodyParameter
Auto Trait Implementations§
impl Freeze for PhysicsServerBodyParameter
impl RefUnwindSafe for PhysicsServerBodyParameter
impl Send for PhysicsServerBodyParameter
impl Sync for PhysicsServerBodyParameter
impl Unpin for PhysicsServerBodyParameter
impl UnwindSafe for PhysicsServerBodyParameter
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