#[repr(C)]pub struct PushDescriptorSetWithTemplateInfo {
pub s_type: StructureType,
pub p_next: *const c_void,
pub descriptor_update_template: DescriptorUpdateTemplate,
pub layout: PipelineLayout,
pub set: u32,
pub p_data: *const c_void,
}Expand description
VkPushDescriptorSetWithTemplateInfo
Provided by VK_COMPUTE_VERSION_1_4.
§Extended By
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_PUSH_DESCRIPTOR_SET_WITH_TEMPLATE_INFO.
p_next: *const c_voidOptional, may be null.
descriptor_update_template: DescriptorUpdateTemplate§layout: PipelineLayout§set: u32§p_data: *const c_voidImplementations§
Source§impl PushDescriptorSetWithTemplateInfo
impl PushDescriptorSetWithTemplateInfo
Sourcepub fn builder<'a>() -> PushDescriptorSetWithTemplateInfoBuilder<'a>
pub fn builder<'a>() -> PushDescriptorSetWithTemplateInfoBuilder<'a>
Returns a builder for this struct with sType pre-filled.
Trait Implementations§
Source§impl Clone for PushDescriptorSetWithTemplateInfo
impl Clone for PushDescriptorSetWithTemplateInfo
Source§fn clone(&self) -> PushDescriptorSetWithTemplateInfo
fn clone(&self) -> PushDescriptorSetWithTemplateInfo
Returns a duplicate 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 moreimpl Copy for PushDescriptorSetWithTemplateInfo
Auto Trait Implementations§
impl Freeze for PushDescriptorSetWithTemplateInfo
impl RefUnwindSafe for PushDescriptorSetWithTemplateInfo
impl !Send for PushDescriptorSetWithTemplateInfo
impl !Sync for PushDescriptorSetWithTemplateInfo
impl Unpin for PushDescriptorSetWithTemplateInfo
impl UnsafeUnpin for PushDescriptorSetWithTemplateInfo
impl UnwindSafe for PushDescriptorSetWithTemplateInfo
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