#[repr(u32)]pub enum PxScenePrunerIndex {
PxScenePrunerStatic = 0,
PxScenePrunerDynamic = 1,
PxSceneCompoundPruner = 4_294_967_295,
}Expand description
Built-in enum for default PxScene pruners
This is passed as a pruner index to various functions in the following APIs.
Variants§
Trait Implementations§
Source§impl Clone for PxScenePrunerIndex
impl Clone for PxScenePrunerIndex
Source§fn clone(&self) -> PxScenePrunerIndex
fn clone(&self) -> PxScenePrunerIndex
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 PxScenePrunerIndex
Source§impl Debug for PxScenePrunerIndex
impl Debug for PxScenePrunerIndex
impl Eq for PxScenePrunerIndex
Source§impl PartialEq for PxScenePrunerIndex
impl PartialEq for PxScenePrunerIndex
Source§fn eq(&self, other: &PxScenePrunerIndex) -> bool
fn eq(&self, other: &PxScenePrunerIndex) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PxScenePrunerIndex
Auto Trait Implementations§
impl Freeze for PxScenePrunerIndex
impl RefUnwindSafe for PxScenePrunerIndex
impl Send for PxScenePrunerIndex
impl Sync for PxScenePrunerIndex
impl Unpin for PxScenePrunerIndex
impl UnsafeUnpin for PxScenePrunerIndex
impl UnwindSafe for PxScenePrunerIndex
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