#[non_exhaustive]#[repr(u32)]pub enum VkComponentTypeNV {
VK_COMPONENT_TYPE_FLOAT16_NV = 0,
VK_COMPONENT_TYPE_FLOAT32_NV = 1,
VK_COMPONENT_TYPE_FLOAT64_NV = 2,
VK_COMPONENT_TYPE_SINT8_NV = 3,
VK_COMPONENT_TYPE_SINT16_NV = 4,
VK_COMPONENT_TYPE_SINT32_NV = 5,
VK_COMPONENT_TYPE_SINT64_NV = 6,
VK_COMPONENT_TYPE_UINT8_NV = 7,
VK_COMPONENT_TYPE_UINT16_NV = 8,
VK_COMPONENT_TYPE_UINT32_NV = 9,
VK_COMPONENT_TYPE_UINT64_NV = 10,
VK_COMPONENT_TYPE_MAX_ENUM_NV = 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_COMPONENT_TYPE_FLOAT16_NV = 0
VK_COMPONENT_TYPE_FLOAT32_NV = 1
VK_COMPONENT_TYPE_FLOAT64_NV = 2
VK_COMPONENT_TYPE_SINT8_NV = 3
VK_COMPONENT_TYPE_SINT16_NV = 4
VK_COMPONENT_TYPE_SINT32_NV = 5
VK_COMPONENT_TYPE_SINT64_NV = 6
VK_COMPONENT_TYPE_UINT8_NV = 7
VK_COMPONENT_TYPE_UINT16_NV = 8
VK_COMPONENT_TYPE_UINT32_NV = 9
VK_COMPONENT_TYPE_UINT64_NV = 10
VK_COMPONENT_TYPE_MAX_ENUM_NV = 2_147_483_647
Trait Implementations§
Source§impl Clone for VkComponentTypeNV
impl Clone for VkComponentTypeNV
Source§fn clone(&self) -> VkComponentTypeNV
fn clone(&self) -> VkComponentTypeNV
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 VkComponentTypeNV
impl Debug for VkComponentTypeNV
Source§impl Hash for VkComponentTypeNV
impl Hash for VkComponentTypeNV
Source§impl PartialEq for VkComponentTypeNV
impl PartialEq for VkComponentTypeNV
impl Copy for VkComponentTypeNV
impl Eq for VkComponentTypeNV
impl StructuralPartialEq for VkComponentTypeNV
Auto Trait Implementations§
impl Freeze for VkComponentTypeNV
impl RefUnwindSafe for VkComponentTypeNV
impl Send for VkComponentTypeNV
impl Sync for VkComponentTypeNV
impl Unpin for VkComponentTypeNV
impl UnwindSafe for VkComponentTypeNV
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