#[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 · 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 PxControllerDebugRenderFlag
impl Debug for PxControllerDebugRenderFlag
impl Copy for PxControllerDebugRenderFlag
impl Eq for PxControllerDebugRenderFlag
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 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