#[repr(C)]pub struct DescriptorSetVariableDescriptorCountAllocateInfo {
pub s_type: StructureType,
pub p_next: *const c_void,
pub descriptor_set_count: u32,
pub p_descriptor_counts: *const u32,
}Expand description
VkDescriptorSetVariableDescriptorCountAllocateInfo
Provided by VK_COMPUTE_VERSION_1_2.
§Extends
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_DESCRIPTOR_SET_VARIABLE_DESCRIPTOR_COUNT_ALLOCATE_INFO.
p_next: *const c_voidOptional, may be null.
descriptor_set_count: u32Length of p_descriptor_counts.
p_descriptor_counts: *const u32Implementations§
Source§impl DescriptorSetVariableDescriptorCountAllocateInfo
impl DescriptorSetVariableDescriptorCountAllocateInfo
Sourcepub fn builder<'a>() -> DescriptorSetVariableDescriptorCountAllocateInfoBuilder<'a>
pub fn builder<'a>() -> DescriptorSetVariableDescriptorCountAllocateInfoBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for DescriptorSetVariableDescriptorCountAllocateInfo
impl Clone for DescriptorSetVariableDescriptorCountAllocateInfo
Source§fn clone(&self) -> DescriptorSetVariableDescriptorCountAllocateInfo
fn clone(&self) -> DescriptorSetVariableDescriptorCountAllocateInfo
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 DescriptorSetVariableDescriptorCountAllocateInfo
impl ExtendsDescriptorSetAllocateInfo for DescriptorSetVariableDescriptorCountAllocateInfo
Auto Trait Implementations§
impl Freeze for DescriptorSetVariableDescriptorCountAllocateInfo
impl RefUnwindSafe for DescriptorSetVariableDescriptorCountAllocateInfo
impl !Send for DescriptorSetVariableDescriptorCountAllocateInfo
impl !Sync for DescriptorSetVariableDescriptorCountAllocateInfo
impl Unpin for DescriptorSetVariableDescriptorCountAllocateInfo
impl UnsafeUnpin for DescriptorSetVariableDescriptorCountAllocateInfo
impl UnwindSafe for DescriptorSetVariableDescriptorCountAllocateInfo
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