#[non_exhaustive]#[repr(u32)]pub enum VkDescriptorPoolCreateFlagBits {
VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT = 1,
VK_DESCRIPTOR_POOL_CREATE_UPDATE_AFTER_BIND_BIT = 2,
VK_DESCRIPTOR_POOL_CREATE_HOST_ONLY_BIT_EXT = 4,
VK_DESCRIPTOR_POOL_CREATE_ALLOW_OVERALLOCATION_SETS_BIT_NV = 8,
VK_DESCRIPTOR_POOL_CREATE_ALLOW_OVERALLOCATION_POOLS_BIT_NV = 16,
VK_DESCRIPTOR_POOL_CREATE_FLAG_BITS_MAX_ENUM = 2_147_483_647,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT = 1
VK_DESCRIPTOR_POOL_CREATE_UPDATE_AFTER_BIND_BIT = 2
VK_DESCRIPTOR_POOL_CREATE_HOST_ONLY_BIT_EXT = 4
VK_DESCRIPTOR_POOL_CREATE_ALLOW_OVERALLOCATION_SETS_BIT_NV = 8
VK_DESCRIPTOR_POOL_CREATE_ALLOW_OVERALLOCATION_POOLS_BIT_NV = 16
VK_DESCRIPTOR_POOL_CREATE_FLAG_BITS_MAX_ENUM = 2_147_483_647
Implementations§
Source§impl VkDescriptorPoolCreateFlagBits
impl VkDescriptorPoolCreateFlagBits
pub const VK_DESCRIPTOR_POOL_CREATE_UPDATE_AFTER_BIND_BIT_EXT: VkDescriptorPoolCreateFlagBits = VkDescriptorPoolCreateFlagBits::VK_DESCRIPTOR_POOL_CREATE_UPDATE_AFTER_BIND_BIT
Source§impl VkDescriptorPoolCreateFlagBits
impl VkDescriptorPoolCreateFlagBits
pub const VK_DESCRIPTOR_POOL_CREATE_HOST_ONLY_BIT_VALVE: VkDescriptorPoolCreateFlagBits = VkDescriptorPoolCreateFlagBits::VK_DESCRIPTOR_POOL_CREATE_HOST_ONLY_BIT_EXT
Trait Implementations§
Source§impl Clone for VkDescriptorPoolCreateFlagBits
impl Clone for VkDescriptorPoolCreateFlagBits
Source§fn clone(&self) -> VkDescriptorPoolCreateFlagBits
fn clone(&self) -> VkDescriptorPoolCreateFlagBits
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 PartialEq for VkDescriptorPoolCreateFlagBits
impl PartialEq for VkDescriptorPoolCreateFlagBits
Source§fn eq(&self, other: &VkDescriptorPoolCreateFlagBits) -> bool
fn eq(&self, other: &VkDescriptorPoolCreateFlagBits) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for VkDescriptorPoolCreateFlagBits
impl Eq for VkDescriptorPoolCreateFlagBits
impl StructuralPartialEq for VkDescriptorPoolCreateFlagBits
Auto Trait Implementations§
impl Freeze for VkDescriptorPoolCreateFlagBits
impl RefUnwindSafe for VkDescriptorPoolCreateFlagBits
impl Send for VkDescriptorPoolCreateFlagBits
impl Sync for VkDescriptorPoolCreateFlagBits
impl Unpin for VkDescriptorPoolCreateFlagBits
impl UnwindSafe for VkDescriptorPoolCreateFlagBits
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