#[repr(u32)]pub enum PxControllerDebugRenderFlag {
TemporalBv = 1,
CachedBv = 2,
Obstacles = 4,
None = 0,
All = 4_294_967_295,
}Expand description
specifies debug-rendering flags
Variants§
TemporalBv = 1
Temporal bounding volume around controllers
CachedBv = 2
Cached bounding volume around controllers
Obstacles = 4
User-defined obstacles
None = 0
All = 4_294_967_295
Trait Implementations§
Source§impl Clone for PxControllerDebugRenderFlag
impl Clone for PxControllerDebugRenderFlag
Source§fn clone(&self) -> PxControllerDebugRenderFlag
fn clone(&self) -> PxControllerDebugRenderFlag
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 PxControllerDebugRenderFlag
Source§impl Debug for PxControllerDebugRenderFlag
impl Debug for PxControllerDebugRenderFlag
impl Eq for PxControllerDebugRenderFlag
Source§impl PartialEq for PxControllerDebugRenderFlag
impl PartialEq for PxControllerDebugRenderFlag
Source§fn eq(&self, other: &PxControllerDebugRenderFlag) -> bool
fn eq(&self, other: &PxControllerDebugRenderFlag) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PxControllerDebugRenderFlag
Auto Trait Implementations§
impl Freeze for PxControllerDebugRenderFlag
impl RefUnwindSafe for PxControllerDebugRenderFlag
impl Send for PxControllerDebugRenderFlag
impl Sync for PxControllerDebugRenderFlag
impl Unpin for PxControllerDebugRenderFlag
impl UnsafeUnpin for PxControllerDebugRenderFlag
impl UnwindSafe for PxControllerDebugRenderFlag
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