#[repr(C)]pub struct DescriptorSetAllocateInfo {
pub s_type: StructureType,
pub p_next: *const c_void,
pub descriptor_pool: DescriptorPool,
pub descriptor_set_count: u32,
pub p_set_layouts: *const DescriptorSetLayout,
}Expand description
VkDescriptorSetAllocateInfo
Provided by VK_COMPUTE_VERSION_1_0.
§Extended By
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO.
p_next: *const c_voidOptional, may be null.
descriptor_pool: DescriptorPoolThread safety: must be externally synchronized.
descriptor_set_count: u32Length of p_set_layouts.
p_set_layouts: *const DescriptorSetLayoutImplementations§
Source§impl DescriptorSetAllocateInfo
impl DescriptorSetAllocateInfo
Sourcepub fn builder<'a>() -> DescriptorSetAllocateInfoBuilder<'a>
pub fn builder<'a>() -> DescriptorSetAllocateInfoBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for DescriptorSetAllocateInfo
impl Clone for DescriptorSetAllocateInfo
Source§fn clone(&self) -> DescriptorSetAllocateInfo
fn clone(&self) -> DescriptorSetAllocateInfo
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 moreSource§impl Debug for DescriptorSetAllocateInfo
impl Debug for DescriptorSetAllocateInfo
Source§impl Default for DescriptorSetAllocateInfo
impl Default for DescriptorSetAllocateInfo
Source§fn default() -> DescriptorSetAllocateInfo
fn default() -> DescriptorSetAllocateInfo
Returns the “default value” for a type. Read more
impl Copy for DescriptorSetAllocateInfo
Auto Trait Implementations§
impl Freeze for DescriptorSetAllocateInfo
impl RefUnwindSafe for DescriptorSetAllocateInfo
impl !Send for DescriptorSetAllocateInfo
impl !Sync for DescriptorSetAllocateInfo
impl Unpin for DescriptorSetAllocateInfo
impl UnsafeUnpin for DescriptorSetAllocateInfo
impl UnwindSafe for DescriptorSetAllocateInfo
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