pub enum AnyAccelerationStructureNode<P> {
AccelerationStructure(AccelerationStructureNode<P>),
AccelerationStructureLease(AccelerationStructureLeaseNode<P>),
}Variants
AccelerationStructure(AccelerationStructureNode<P>)
AccelerationStructureLease(AccelerationStructureLeaseNode<P>)
Trait Implementations
sourceimpl<P> Clone for AnyAccelerationStructureNode<P>
impl<P> Clone for AnyAccelerationStructureNode<P>
sourceimpl<P: Debug> Debug for AnyAccelerationStructureNode<P>
impl<P: Debug> Debug for AnyAccelerationStructureNode<P>
sourceimpl<P> From<AccelerationStructureLeaseNode<P>> for AnyAccelerationStructureNode<P>
impl<P> From<AccelerationStructureLeaseNode<P>> for AnyAccelerationStructureNode<P>
sourcefn from(node: AccelerationStructureLeaseNode<P>) -> Self
fn from(node: AccelerationStructureLeaseNode<P>) -> Self
Converts to this type from the input type.
sourceimpl<P> From<AccelerationStructureNode<P>> for AnyAccelerationStructureNode<P>
impl<P> From<AccelerationStructureNode<P>> for AnyAccelerationStructureNode<P>
sourcefn from(node: AccelerationStructureNode<P>) -> Self
fn from(node: AccelerationStructureNode<P>) -> Self
Converts to this type from the input type.
sourceimpl<'a, P> Index<AnyAccelerationStructureNode<P>> for Bindings<'a, P> where
P: SharedPointerKind,
impl<'a, P> Index<AnyAccelerationStructureNode<P>> for Bindings<'a, P> where
P: SharedPointerKind,
type Output = AccelerationStructure<P>
type Output = AccelerationStructure<P>
The returned type after indexing.
sourcefn index(&self, node: AnyAccelerationStructureNode<P>) -> &Self::Output
fn index(&self, node: AnyAccelerationStructureNode<P>) -> &Self::Output
Performs the indexing (container[index]) operation. Read more
sourceimpl<P> View<P> for AnyAccelerationStructureNode<P>
impl<P> View<P> for AnyAccelerationStructureNode<P>
type Information = ()
type Subresource = ()
impl<P> Copy for AnyAccelerationStructureNode<P>
Auto Trait Implementations
impl<P> RefUnwindSafe for AnyAccelerationStructureNode<P> where
P: RefUnwindSafe,
impl<P> Send for AnyAccelerationStructureNode<P> where
P: Send,
impl<P> Sync for AnyAccelerationStructureNode<P> where
P: Sync,
impl<P> Unpin for AnyAccelerationStructureNode<P> where
P: Unpin,
impl<P> UnwindSafe for AnyAccelerationStructureNode<P> where
P: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more