#[repr(C)]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,
}Expand description
enum VkDescriptorPoolCreateFlagBits from VK_VERSION_1_0
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
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 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