#[repr(i32)]pub enum PxConstraintExtIDs {
Joint = 0,
VehicleSuspLimitDeprecated = 1,
VehicleStickyTyreDeprecated = 2,
VehicleJoint = 3,
NextFreeId = 4,
InvalidId = 2_147_483_647,
}Expand description
Unique identifiers for extensions classes which implement a constraint based on PxConstraint.
Users which want to create their own custom constraint types should choose an ID larger or equal to eNEXT_FREE_ID and not eINVALID_ID.
Variants§
Joint = 0
VehicleSuspLimitDeprecated = 1
VehicleStickyTyreDeprecated = 2
VehicleJoint = 3
NextFreeId = 4
InvalidId = 2_147_483_647
Trait Implementations§
Source§impl Clone for PxConstraintExtIDs
impl Clone for PxConstraintExtIDs
Source§fn clone(&self) -> PxConstraintExtIDs
fn clone(&self) -> PxConstraintExtIDs
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 PxConstraintExtIDs
impl Debug for PxConstraintExtIDs
Source§impl PartialEq for PxConstraintExtIDs
impl PartialEq for PxConstraintExtIDs
impl Copy for PxConstraintExtIDs
impl Eq for PxConstraintExtIDs
impl StructuralPartialEq for PxConstraintExtIDs
Auto Trait Implementations§
impl Freeze for PxConstraintExtIDs
impl RefUnwindSafe for PxConstraintExtIDs
impl Send for PxConstraintExtIDs
impl Sync for PxConstraintExtIDs
impl Unpin for PxConstraintExtIDs
impl UnwindSafe for PxConstraintExtIDs
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