#[non_exhaustive]#[repr(u32)]pub enum VkValidationFeatureEnableEXT {
VK_VALIDATION_FEATURE_ENABLE_GPU_ASSISTED_EXT = 0,
VK_VALIDATION_FEATURE_ENABLE_GPU_ASSISTED_RESERVE_BINDING_SLOT_EXT = 1,
VK_VALIDATION_FEATURE_ENABLE_BEST_PRACTICES_EXT = 2,
VK_VALIDATION_FEATURE_ENABLE_DEBUG_PRINTF_EXT = 3,
VK_VALIDATION_FEATURE_ENABLE_SYNCHRONIZATION_VALIDATION_EXT = 4,
VK_VALIDATION_FEATURE_ENABLE_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_VALIDATION_FEATURE_ENABLE_GPU_ASSISTED_EXT = 0
VK_VALIDATION_FEATURE_ENABLE_GPU_ASSISTED_RESERVE_BINDING_SLOT_EXT = 1
VK_VALIDATION_FEATURE_ENABLE_BEST_PRACTICES_EXT = 2
VK_VALIDATION_FEATURE_ENABLE_DEBUG_PRINTF_EXT = 3
VK_VALIDATION_FEATURE_ENABLE_SYNCHRONIZATION_VALIDATION_EXT = 4
VK_VALIDATION_FEATURE_ENABLE_MAX_ENUM_EXT = 2_147_483_647
Trait Implementations§
Source§impl Clone for VkValidationFeatureEnableEXT
impl Clone for VkValidationFeatureEnableEXT
Source§fn clone(&self) -> VkValidationFeatureEnableEXT
fn clone(&self) -> VkValidationFeatureEnableEXT
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 VkValidationFeatureEnableEXT
impl Debug for VkValidationFeatureEnableEXT
Source§impl Hash for VkValidationFeatureEnableEXT
impl Hash for VkValidationFeatureEnableEXT
Source§impl PartialEq for VkValidationFeatureEnableEXT
impl PartialEq for VkValidationFeatureEnableEXT
Source§fn eq(&self, other: &VkValidationFeatureEnableEXT) -> bool
fn eq(&self, other: &VkValidationFeatureEnableEXT) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for VkValidationFeatureEnableEXT
impl Eq for VkValidationFeatureEnableEXT
impl StructuralPartialEq for VkValidationFeatureEnableEXT
Auto Trait Implementations§
impl Freeze for VkValidationFeatureEnableEXT
impl RefUnwindSafe for VkValidationFeatureEnableEXT
impl Send for VkValidationFeatureEnableEXT
impl Sync for VkValidationFeatureEnableEXT
impl Unpin for VkValidationFeatureEnableEXT
impl UnwindSafe for VkValidationFeatureEnableEXT
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