#[repr(C)]pub struct DescriptorUpdateTemplateCreateInfo {
pub sType: StructureType,
pub pNext: *const c_void,
pub flags: DescriptorUpdateTemplateCreateFlags,
pub descriptorUpdateEntryCount: u32,
pub pDescriptorUpdateEntries: *const DescriptorUpdateTemplateEntry,
pub templateType: DescriptorUpdateTemplateType,
pub descriptorSetLayout: DescriptorSetLayout,
pub pipelineBindPoint: PipelineBindPoint,
pub pipelineLayout: PipelineLayout,
pub set: u32,
}
Fields§
§sType: StructureType
§pNext: *const c_void
§flags: DescriptorUpdateTemplateCreateFlags
§descriptorUpdateEntryCount: u32
§pDescriptorUpdateEntries: *const DescriptorUpdateTemplateEntry
§templateType: DescriptorUpdateTemplateType
§descriptorSetLayout: DescriptorSetLayout
§pipelineBindPoint: PipelineBindPoint
§pipelineLayout: PipelineLayout
§set: u32
Trait Implementations§
Source§impl Clone for DescriptorUpdateTemplateCreateInfo
impl Clone for DescriptorUpdateTemplateCreateInfo
Source§fn clone(&self) -> DescriptorUpdateTemplateCreateInfo
fn clone(&self) -> DescriptorUpdateTemplateCreateInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl Copy for DescriptorUpdateTemplateCreateInfo
Auto Trait Implementations§
impl Freeze for DescriptorUpdateTemplateCreateInfo
impl RefUnwindSafe for DescriptorUpdateTemplateCreateInfo
impl !Send for DescriptorUpdateTemplateCreateInfo
impl !Sync for DescriptorUpdateTemplateCreateInfo
impl Unpin for DescriptorUpdateTemplateCreateInfo
impl UnwindSafe for DescriptorUpdateTemplateCreateInfo
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