Struct ash::vk::DescriptorUpdateTemplateCreateInfo
source · #[repr(C)]pub struct DescriptorUpdateTemplateCreateInfo<'a> {
pub s_type: StructureType,
pub p_next: *const c_void,
pub flags: DescriptorUpdateTemplateCreateFlags,
pub descriptor_update_entry_count: u32,
pub p_descriptor_update_entries: *const DescriptorUpdateTemplateEntry,
pub template_type: DescriptorUpdateTemplateType,
pub descriptor_set_layout: DescriptorSetLayout,
pub pipeline_bind_point: PipelineBindPoint,
pub pipeline_layout: PipelineLayout,
pub set: u32,
pub _marker: PhantomData<&'a ()>,
}
Expand description
Fields§
§s_type: StructureType
§p_next: *const c_void
§flags: DescriptorUpdateTemplateCreateFlags
§descriptor_update_entry_count: u32
§p_descriptor_update_entries: *const DescriptorUpdateTemplateEntry
§template_type: DescriptorUpdateTemplateType
§descriptor_set_layout: DescriptorSetLayout
§pipeline_bind_point: PipelineBindPoint
§pipeline_layout: PipelineLayout
§set: u32
§_marker: PhantomData<&'a ()>
Implementations§
source§impl<'a> DescriptorUpdateTemplateCreateInfo<'a>
impl<'a> DescriptorUpdateTemplateCreateInfo<'a>
pub fn flags(self, flags: DescriptorUpdateTemplateCreateFlags) -> Self
pub fn descriptor_update_entries( self, descriptor_update_entries: &'a [DescriptorUpdateTemplateEntry], ) -> Self
pub fn template_type(self, template_type: DescriptorUpdateTemplateType) -> Self
pub fn descriptor_set_layout( self, descriptor_set_layout: DescriptorSetLayout, ) -> Self
pub fn pipeline_bind_point(self, pipeline_bind_point: PipelineBindPoint) -> Self
pub fn pipeline_layout(self, pipeline_layout: PipelineLayout) -> Self
pub fn set(self, set: u32) -> Self
Trait Implementations§
source§impl<'a> Clone for DescriptorUpdateTemplateCreateInfo<'a>
impl<'a> Clone for DescriptorUpdateTemplateCreateInfo<'a>
source§fn clone(&self) -> DescriptorUpdateTemplateCreateInfo<'a>
fn clone(&self) -> DescriptorUpdateTemplateCreateInfo<'a>
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 moresource§impl<'a> Debug for DescriptorUpdateTemplateCreateInfo<'a>
impl<'a> Debug for DescriptorUpdateTemplateCreateInfo<'a>
source§impl Default for DescriptorUpdateTemplateCreateInfo<'_>
impl Default for DescriptorUpdateTemplateCreateInfo<'_>
source§impl<'a> TaggedStructure for DescriptorUpdateTemplateCreateInfo<'a>
impl<'a> TaggedStructure for DescriptorUpdateTemplateCreateInfo<'a>
const STRUCTURE_TYPE: StructureType = StructureType::DESCRIPTOR_UPDATE_TEMPLATE_CREATE_INFO
impl<'a> Copy for DescriptorUpdateTemplateCreateInfo<'a>
impl Send for DescriptorUpdateTemplateCreateInfo<'_>
impl Sync for DescriptorUpdateTemplateCreateInfo<'_>
Auto Trait Implementations§
impl<'a> Freeze for DescriptorUpdateTemplateCreateInfo<'a>
impl<'a> RefUnwindSafe for DescriptorUpdateTemplateCreateInfo<'a>
impl<'a> Unpin for DescriptorUpdateTemplateCreateInfo<'a>
impl<'a> UnwindSafe for DescriptorUpdateTemplateCreateInfo<'a>
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