#[non_exhaustive]#[repr(u32)]pub enum VkCoarseSampleOrderTypeNV {
VK_COARSE_SAMPLE_ORDER_TYPE_DEFAULT_NV = 0,
VK_COARSE_SAMPLE_ORDER_TYPE_CUSTOM_NV = 1,
VK_COARSE_SAMPLE_ORDER_TYPE_PIXEL_MAJOR_NV = 2,
VK_COARSE_SAMPLE_ORDER_TYPE_SAMPLE_MAJOR_NV = 3,
VK_COARSE_SAMPLE_ORDER_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_COARSE_SAMPLE_ORDER_TYPE_DEFAULT_NV = 0
VK_COARSE_SAMPLE_ORDER_TYPE_CUSTOM_NV = 1
VK_COARSE_SAMPLE_ORDER_TYPE_PIXEL_MAJOR_NV = 2
VK_COARSE_SAMPLE_ORDER_TYPE_SAMPLE_MAJOR_NV = 3
VK_COARSE_SAMPLE_ORDER_TYPE_MAX_ENUM_NV = 2_147_483_647
Trait Implementations§
Source§impl Clone for VkCoarseSampleOrderTypeNV
impl Clone for VkCoarseSampleOrderTypeNV
Source§fn clone(&self) -> VkCoarseSampleOrderTypeNV
fn clone(&self) -> VkCoarseSampleOrderTypeNV
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 VkCoarseSampleOrderTypeNV
impl Debug for VkCoarseSampleOrderTypeNV
Source§impl Hash for VkCoarseSampleOrderTypeNV
impl Hash for VkCoarseSampleOrderTypeNV
impl Copy for VkCoarseSampleOrderTypeNV
impl Eq for VkCoarseSampleOrderTypeNV
impl StructuralPartialEq for VkCoarseSampleOrderTypeNV
Auto Trait Implementations§
impl Freeze for VkCoarseSampleOrderTypeNV
impl RefUnwindSafe for VkCoarseSampleOrderTypeNV
impl Send for VkCoarseSampleOrderTypeNV
impl Sync for VkCoarseSampleOrderTypeNV
impl Unpin for VkCoarseSampleOrderTypeNV
impl UnwindSafe for VkCoarseSampleOrderTypeNV
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