pub struct BlasAabbGeometry<'a, Buffer = BufferId> {
pub size: &'a BlasAABBGeometrySizeDescriptor,
pub stride: BufferAddress,
pub aabb_buffer: Buffer,
pub primitive_offset: u32,
}Fields§
§size: &'a BlasAABBGeometrySizeDescriptor§stride: BufferAddress§aabb_buffer: Buffer§primitive_offset: u32Trait Implementations§
Auto Trait Implementations§
impl<'a, Buffer> Freeze for BlasAabbGeometry<'a, Buffer>where
Buffer: Freeze,
impl<'a, Buffer> RefUnwindSafe for BlasAabbGeometry<'a, Buffer>where
Buffer: RefUnwindSafe,
impl<'a, Buffer> Send for BlasAabbGeometry<'a, Buffer>where
Buffer: Send,
impl<'a, Buffer> Sync for BlasAabbGeometry<'a, Buffer>where
Buffer: Sync,
impl<'a, Buffer> Unpin for BlasAabbGeometry<'a, Buffer>where
Buffer: Unpin,
impl<'a, Buffer> UnwindSafe for BlasAabbGeometry<'a, Buffer>where
Buffer: UnwindSafe,
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more