Struct vulkanalia::vk::RayTracingPipelineCreateInfoNV[][src]

#[repr(C)]pub struct RayTracingPipelineCreateInfoNV {
    pub s_type: StructureType,
    pub next: *const c_void,
    pub flags: PipelineCreateFlags,
    pub stage_count: u32,
    pub stages: *const PipelineShaderStageCreateInfo,
    pub group_count: u32,
    pub groups: *const RayTracingShaderGroupCreateInfoNV,
    pub max_recursion_depth: u32,
    pub layout: PipelineLayout,
    pub base_pipeline_handle: Pipeline,
    pub base_pipeline_index: i32,
}

Fields

s_type: StructureTypenext: *const c_voidflags: PipelineCreateFlagsstage_count: u32stages: *const PipelineShaderStageCreateInfogroup_count: u32groups: *const RayTracingShaderGroupCreateInfoNVmax_recursion_depth: u32layout: PipelineLayoutbase_pipeline_handle: Pipelinebase_pipeline_index: i32

Trait Implementations

impl Cast for RayTracingPipelineCreateInfoNV[src]

type Target = RayTracingPipelineCreateInfoNV

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

impl Clone for RayTracingPipelineCreateInfoNV[src]

impl Copy for RayTracingPipelineCreateInfoNV[src]

impl Debug for RayTracingPipelineCreateInfoNV[src]

impl Default for RayTracingPipelineCreateInfoNV[src]

impl Eq for RayTracingPipelineCreateInfoNV[src]

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

type Builder = RayTracingPipelineCreateInfoNVBuilder<'b>

The associated builder for this type.

impl Hash for RayTracingPipelineCreateInfoNV[src]

impl PartialEq<RayTracingPipelineCreateInfoNV> for RayTracingPipelineCreateInfoNV[src]

impl StructuralEq for RayTracingPipelineCreateInfoNV[src]

impl StructuralPartialEq for RayTracingPipelineCreateInfoNV[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.