#[repr(i32)]pub enum PxActorType {
RigidStatic = 0,
RigidDynamic = 1,
ArticulationLink = 2,
}Expand description
Identifies each type of actor.
Variants§
RigidStatic = 0
A static rigid body
RigidDynamic = 1
A dynamic rigid body
ArticulationLink = 2
An articulation link
Trait Implementations§
Source§impl Clone for PxActorType
impl Clone for PxActorType
Source§fn clone(&self) -> PxActorType
fn clone(&self) -> PxActorType
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 PxActorType
impl Debug for PxActorType
Source§impl PartialEq for PxActorType
impl PartialEq for PxActorType
impl Copy for PxActorType
impl Eq for PxActorType
impl StructuralPartialEq for PxActorType
Auto Trait Implementations§
impl Freeze for PxActorType
impl RefUnwindSafe for PxActorType
impl Send for PxActorType
impl Sync for PxActorType
impl Unpin for PxActorType
impl UnwindSafe for PxActorType
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