Struct ash::vk::PipelineShaderStageCreateInfo  
source · #[repr(C)]pub struct PipelineShaderStageCreateInfo {
    pub s_type: StructureType,
    pub p_next: *const c_void,
    pub flags: PipelineShaderStageCreateFlags,
    pub stage: ShaderStageFlags,
    pub module: ShaderModule,
    pub p_name: *const c_char,
    pub p_specialization_info: *const SpecializationInfo,
}Expand description
Fields§
§s_type: StructureType§p_next: *const c_void§flags: PipelineShaderStageCreateFlags§stage: ShaderStageFlags§module: ShaderModule§p_name: *const c_char§p_specialization_info: *const SpecializationInfoImplementations§
source§impl PipelineShaderStageCreateInfo
 
impl PipelineShaderStageCreateInfo
pub fn builder<'a>() -> PipelineShaderStageCreateInfoBuilder<'a>
Trait Implementations§
source§impl Clone for PipelineShaderStageCreateInfo
 
impl Clone for PipelineShaderStageCreateInfo
source§fn clone(&self) -> PipelineShaderStageCreateInfo
 
fn clone(&self) -> PipelineShaderStageCreateInfo
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read more