Struct ash::vk::DescriptorSetAllocateInfo
source · #[repr(C)]pub struct DescriptorSetAllocateInfo<'a> {
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,
pub _marker: PhantomData<&'a ()>,
}
Expand description
Fields§
§s_type: StructureType
§p_next: *const c_void
§descriptor_pool: DescriptorPool
§descriptor_set_count: u32
§p_set_layouts: *const DescriptorSetLayout
§_marker: PhantomData<&'a ()>
Implementations§
source§impl<'a> DescriptorSetAllocateInfo<'a>
impl<'a> DescriptorSetAllocateInfo<'a>
pub fn descriptor_pool(self, descriptor_pool: DescriptorPool) -> Self
pub fn set_layouts(self, set_layouts: &'a [DescriptorSetLayout]) -> Self
sourcepub fn push_next<T: ExtendsDescriptorSetAllocateInfo + ?Sized>(
self,
next: &'a mut T,
) -> Self
pub fn push_next<T: ExtendsDescriptorSetAllocateInfo + ?Sized>( self, next: &'a mut T, ) -> Self
Prepends the given extension struct between the root and the first pointer. This
method only exists on structs that can be passed to a function directly. Only
valid extension structs can be pushed into the chain.
If the chain looks like A -> B -> C
, and you call x.push_next(&mut D)
, then the
chain will look like A -> D -> B -> C
.
Trait Implementations§
source§impl<'a> Clone for DescriptorSetAllocateInfo<'a>
impl<'a> Clone for DescriptorSetAllocateInfo<'a>
source§fn clone(&self) -> DescriptorSetAllocateInfo<'a>
fn clone(&self) -> DescriptorSetAllocateInfo<'a>
Returns a copy 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<'a> Debug for DescriptorSetAllocateInfo<'a>
impl<'a> Debug for DescriptorSetAllocateInfo<'a>
source§impl Default for DescriptorSetAllocateInfo<'_>
impl Default for DescriptorSetAllocateInfo<'_>
source§impl<'a> TaggedStructure for DescriptorSetAllocateInfo<'a>
impl<'a> TaggedStructure for DescriptorSetAllocateInfo<'a>
const STRUCTURE_TYPE: StructureType = StructureType::DESCRIPTOR_SET_ALLOCATE_INFO
impl<'a> Copy for DescriptorSetAllocateInfo<'a>
impl Send for DescriptorSetAllocateInfo<'_>
impl Sync for DescriptorSetAllocateInfo<'_>
Auto Trait Implementations§
impl<'a> Freeze for DescriptorSetAllocateInfo<'a>
impl<'a> RefUnwindSafe for DescriptorSetAllocateInfo<'a>
impl<'a> Unpin for DescriptorSetAllocateInfo<'a>
impl<'a> UnwindSafe for DescriptorSetAllocateInfo<'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