#[repr(C)]pub struct DescriptorSetAllocateInfo {
pub sType: StructureType,
pub pNext: *const c_void,
pub descriptorPool: DescriptorPool,
pub descriptorSetCount: u32,
pub pSetLayouts: *const DescriptorSetLayout,
}Fields§
§sType: StructureType§pNext: *const c_void§descriptorPool: DescriptorPool§descriptorSetCount: u32§pSetLayouts: *const DescriptorSetLayoutTrait 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 moreimpl 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 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