Struct ash::vk::DescriptorUpdateTemplateCreateInfoBuilder
source · pub struct DescriptorUpdateTemplateCreateInfoBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> DescriptorUpdateTemplateCreateInfoBuilder<'a>
impl<'a> DescriptorUpdateTemplateCreateInfoBuilder<'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
sourcepub fn build(self) -> DescriptorUpdateTemplateCreateInfo
pub fn build(self) -> DescriptorUpdateTemplateCreateInfo
Calling build will discard all the lifetime information. Only call this if
necessary! Builders implement Deref
targeting their corresponding Vulkan struct,
so references to builders can be passed directly to Vulkan functions.
Trait Implementations§
source§impl<'a> Deref for DescriptorUpdateTemplateCreateInfoBuilder<'a>
impl<'a> Deref for DescriptorUpdateTemplateCreateInfoBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for DescriptorUpdateTemplateCreateInfoBuilder<'a>
impl<'a> RefUnwindSafe for DescriptorUpdateTemplateCreateInfoBuilder<'a>
impl<'a> !Send for DescriptorUpdateTemplateCreateInfoBuilder<'a>
impl<'a> !Sync for DescriptorUpdateTemplateCreateInfoBuilder<'a>
impl<'a> Unpin for DescriptorUpdateTemplateCreateInfoBuilder<'a>
impl<'a> UnwindSafe for DescriptorUpdateTemplateCreateInfoBuilder<'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