Struct ash::vk::DescriptorPoolCreateInfo
source · #[repr(C)]pub struct DescriptorPoolCreateInfo {
pub s_type: StructureType,
pub p_next: *const c_void,
pub flags: DescriptorPoolCreateFlags,
pub max_sets: u32,
pub pool_size_count: u32,
pub p_pool_sizes: *const DescriptorPoolSize,
}
Expand description
Fields§
§s_type: StructureType
§p_next: *const c_void
§flags: DescriptorPoolCreateFlags
§max_sets: u32
§pool_size_count: u32
§p_pool_sizes: *const DescriptorPoolSize
Implementations§
source§impl DescriptorPoolCreateInfo
impl DescriptorPoolCreateInfo
pub fn builder<'a>() -> DescriptorPoolCreateInfoBuilder<'a>
Trait Implementations§
source§impl Clone for DescriptorPoolCreateInfo
impl Clone for DescriptorPoolCreateInfo
source§fn clone(&self) -> DescriptorPoolCreateInfo
fn clone(&self) -> DescriptorPoolCreateInfo
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 Debug for DescriptorPoolCreateInfo
impl Debug for DescriptorPoolCreateInfo
source§impl Default for DescriptorPoolCreateInfo
impl Default for DescriptorPoolCreateInfo
source§impl TaggedStructure for DescriptorPoolCreateInfo
impl TaggedStructure for DescriptorPoolCreateInfo
const STRUCTURE_TYPE: StructureType = StructureType::DESCRIPTOR_POOL_CREATE_INFO
impl Copy for DescriptorPoolCreateInfo
Auto Trait Implementations§
impl Freeze for DescriptorPoolCreateInfo
impl RefUnwindSafe for DescriptorPoolCreateInfo
impl !Send for DescriptorPoolCreateInfo
impl !Sync for DescriptorPoolCreateInfo
impl Unpin for DescriptorPoolCreateInfo
impl UnwindSafe for DescriptorPoolCreateInfo
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