#[non_exhaustive]#[repr(u32)]pub enum VkPerformanceValueTypeINTEL {
VK_PERFORMANCE_VALUE_TYPE_UINT32_INTEL = 0,
VK_PERFORMANCE_VALUE_TYPE_UINT64_INTEL = 1,
VK_PERFORMANCE_VALUE_TYPE_FLOAT_INTEL = 2,
VK_PERFORMANCE_VALUE_TYPE_BOOL_INTEL = 3,
VK_PERFORMANCE_VALUE_TYPE_STRING_INTEL = 4,
VK_PERFORMANCE_VALUE_TYPE_MAX_ENUM_INTEL = 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_PERFORMANCE_VALUE_TYPE_UINT32_INTEL = 0
VK_PERFORMANCE_VALUE_TYPE_UINT64_INTEL = 1
VK_PERFORMANCE_VALUE_TYPE_FLOAT_INTEL = 2
VK_PERFORMANCE_VALUE_TYPE_BOOL_INTEL = 3
VK_PERFORMANCE_VALUE_TYPE_STRING_INTEL = 4
VK_PERFORMANCE_VALUE_TYPE_MAX_ENUM_INTEL = 2_147_483_647
Trait Implementations§
Source§impl Clone for VkPerformanceValueTypeINTEL
impl Clone for VkPerformanceValueTypeINTEL
Source§fn clone(&self) -> VkPerformanceValueTypeINTEL
fn clone(&self) -> VkPerformanceValueTypeINTEL
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 VkPerformanceValueTypeINTEL
impl Debug for VkPerformanceValueTypeINTEL
Source§impl Hash for VkPerformanceValueTypeINTEL
impl Hash for VkPerformanceValueTypeINTEL
impl Copy for VkPerformanceValueTypeINTEL
impl Eq for VkPerformanceValueTypeINTEL
impl StructuralPartialEq for VkPerformanceValueTypeINTEL
Auto Trait Implementations§
impl Freeze for VkPerformanceValueTypeINTEL
impl RefUnwindSafe for VkPerformanceValueTypeINTEL
impl Send for VkPerformanceValueTypeINTEL
impl Sync for VkPerformanceValueTypeINTEL
impl Unpin for VkPerformanceValueTypeINTEL
impl UnwindSafe for VkPerformanceValueTypeINTEL
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