pub struct VkGraphicsPipeline {
    pub pipeline: Pipeline,
    pub pipeline_layout: PipelineLayout,
    pub dynamic_state: Box<[DynamicState]>,
    pub descriptor_set_layouts: Vec<DescriptorSetLayout>,
    pub device: Arc<RawDevice>,
}

Fields

pipeline: Pipelinepipeline_layout: PipelineLayoutdynamic_state: Box<[DynamicState]>descriptor_set_layouts: Vec<DescriptorSetLayout>device: Arc<RawDevice>

Implementations

Trait Implementations

Formats the value using the given formatter. Read more
Executes the destructor for this type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.