#[non_exhaustive]#[repr(u32)]pub enum VkLayerSettingTypeEXT {
VK_LAYER_SETTING_TYPE_BOOL32_EXT = 0,
VK_LAYER_SETTING_TYPE_INT32_EXT = 1,
VK_LAYER_SETTING_TYPE_INT64_EXT = 2,
VK_LAYER_SETTING_TYPE_UINT32_EXT = 3,
VK_LAYER_SETTING_TYPE_UINT64_EXT = 4,
VK_LAYER_SETTING_TYPE_FLOAT32_EXT = 5,
VK_LAYER_SETTING_TYPE_FLOAT64_EXT = 6,
VK_LAYER_SETTING_TYPE_STRING_EXT = 7,
VK_LAYER_SETTING_TYPE_MAX_ENUM_EXT = 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_LAYER_SETTING_TYPE_BOOL32_EXT = 0
VK_LAYER_SETTING_TYPE_INT32_EXT = 1
VK_LAYER_SETTING_TYPE_INT64_EXT = 2
VK_LAYER_SETTING_TYPE_UINT32_EXT = 3
VK_LAYER_SETTING_TYPE_UINT64_EXT = 4
VK_LAYER_SETTING_TYPE_FLOAT32_EXT = 5
VK_LAYER_SETTING_TYPE_FLOAT64_EXT = 6
VK_LAYER_SETTING_TYPE_STRING_EXT = 7
VK_LAYER_SETTING_TYPE_MAX_ENUM_EXT = 2_147_483_647
Trait Implementations§
Source§impl Clone for VkLayerSettingTypeEXT
impl Clone for VkLayerSettingTypeEXT
Source§fn clone(&self) -> VkLayerSettingTypeEXT
fn clone(&self) -> VkLayerSettingTypeEXT
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 Debug for VkLayerSettingTypeEXT
impl Debug for VkLayerSettingTypeEXT
Source§impl Hash for VkLayerSettingTypeEXT
impl Hash for VkLayerSettingTypeEXT
Source§impl PartialEq for VkLayerSettingTypeEXT
impl PartialEq for VkLayerSettingTypeEXT
impl Copy for VkLayerSettingTypeEXT
impl Eq for VkLayerSettingTypeEXT
impl StructuralPartialEq for VkLayerSettingTypeEXT
Auto Trait Implementations§
impl Freeze for VkLayerSettingTypeEXT
impl RefUnwindSafe for VkLayerSettingTypeEXT
impl Send for VkLayerSettingTypeEXT
impl Sync for VkLayerSettingTypeEXT
impl Unpin for VkLayerSettingTypeEXT
impl UnwindSafe for VkLayerSettingTypeEXT
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