[][src]Struct vulkanalia::vk::AccelerationStructureCreateInfoKHR

#[repr(C)]pub struct AccelerationStructureCreateInfoKHR {
    pub s_type: StructureType,
    pub next: *const c_void,
    pub compacted_size: u64,
    pub type_: AccelerationStructureTypeKHR,
    pub flags: BuildAccelerationStructureFlagsKHR,
    pub max_geometry_count: u32,
    pub geometry_infos: *const AccelerationStructureCreateGeometryTypeInfoKHR,
    pub device_address: u64,
}

Fields

s_type: StructureTypenext: *const c_voidcompacted_size: u64type_: AccelerationStructureTypeKHRflags: BuildAccelerationStructureFlagsKHRmax_geometry_count: u32geometry_infos: *const AccelerationStructureCreateGeometryTypeInfoKHRdevice_address: u64

Trait Implementations

impl Cast for AccelerationStructureCreateInfoKHR[src]

type Target = AccelerationStructureCreateInfoKHR

The other type this type type can be used interchangeably with in FFI.

impl Clone for AccelerationStructureCreateInfoKHR[src]

impl Copy for AccelerationStructureCreateInfoKHR[src]

impl Debug for AccelerationStructureCreateInfoKHR[src]

impl Default for AccelerationStructureCreateInfoKHR[src]

impl Eq for AccelerationStructureCreateInfoKHR[src]

impl<'b> HasBuilder<'b> for AccelerationStructureCreateInfoKHR[src]

type Builder = AccelerationStructureCreateInfoKHRBuilder<'b>

The associated builder for this type.

impl Hash for AccelerationStructureCreateInfoKHR[src]

impl PartialEq<AccelerationStructureCreateInfoKHR> for AccelerationStructureCreateInfoKHR[src]

impl StructuralEq for AccelerationStructureCreateInfoKHR[src]

impl StructuralPartialEq for AccelerationStructureCreateInfoKHR[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.