#[repr(C)]pub struct DescriptorPoolCreateInfo {
pub sType: StructureType,
pub pNext: *const c_void,
pub flags: DescriptorPoolCreateFlags,
pub maxSets: u32,
pub poolSizeCount: u32,
pub pPoolSizes: *const DescriptorPoolSize,
}
Fields§
§sType: StructureType
§pNext: *const c_void
§flags: DescriptorPoolCreateFlags
§maxSets: u32
§poolSizeCount: u32
§pPoolSizes: *const DescriptorPoolSize
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