#[repr(i32)]pub enum PxFilterOp {
PxFilteropAnd = 0,
PxFilteropOr = 1,
PxFilteropXor = 2,
PxFilteropNand = 3,
PxFilteropNor = 4,
PxFilteropNxor = 5,
PxFilteropSwapAnd = 6,
}Expand description
Collision filtering operations.
Variants§
PxFilteropAnd = 0
PxFilteropOr = 1
PxFilteropXor = 2
PxFilteropNand = 3
PxFilteropNor = 4
PxFilteropNxor = 5
PxFilteropSwapAnd = 6
Trait Implementations§
Source§impl Clone for PxFilterOp
impl Clone for PxFilterOp
Source§fn clone(&self) -> PxFilterOp
fn clone(&self) -> PxFilterOp
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 PxFilterOp
Source§impl Debug for PxFilterOp
impl Debug for PxFilterOp
impl Eq for PxFilterOp
Source§impl PartialEq for PxFilterOp
impl PartialEq for PxFilterOp
Source§fn eq(&self, other: &PxFilterOp) -> bool
fn eq(&self, other: &PxFilterOp) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PxFilterOp
Auto Trait Implementations§
impl Freeze for PxFilterOp
impl RefUnwindSafe for PxFilterOp
impl Send for PxFilterOp
impl Sync for PxFilterOp
impl Unpin for PxFilterOp
impl UnsafeUnpin for PxFilterOp
impl UnwindSafe for PxFilterOp
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