#[non_exhaustive]#[repr(u32)]pub enum VkDirectDriverLoadingModeLUNARG {
VK_DIRECT_DRIVER_LOADING_MODE_EXCLUSIVE_LUNARG = 0,
VK_DIRECT_DRIVER_LOADING_MODE_INCLUSIVE_LUNARG = 1,
VK_DIRECT_DRIVER_LOADING_MODE_MAX_ENUM_LUNARG = 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_DIRECT_DRIVER_LOADING_MODE_EXCLUSIVE_LUNARG = 0
VK_DIRECT_DRIVER_LOADING_MODE_INCLUSIVE_LUNARG = 1
VK_DIRECT_DRIVER_LOADING_MODE_MAX_ENUM_LUNARG = 2_147_483_647
Trait Implementations§
Source§impl Clone for VkDirectDriverLoadingModeLUNARG
impl Clone for VkDirectDriverLoadingModeLUNARG
Source§fn clone(&self) -> VkDirectDriverLoadingModeLUNARG
fn clone(&self) -> VkDirectDriverLoadingModeLUNARG
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 PartialEq for VkDirectDriverLoadingModeLUNARG
impl PartialEq for VkDirectDriverLoadingModeLUNARG
Source§fn eq(&self, other: &VkDirectDriverLoadingModeLUNARG) -> bool
fn eq(&self, other: &VkDirectDriverLoadingModeLUNARG) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for VkDirectDriverLoadingModeLUNARG
impl Eq for VkDirectDriverLoadingModeLUNARG
impl StructuralPartialEq for VkDirectDriverLoadingModeLUNARG
Auto Trait Implementations§
impl Freeze for VkDirectDriverLoadingModeLUNARG
impl RefUnwindSafe for VkDirectDriverLoadingModeLUNARG
impl Send for VkDirectDriverLoadingModeLUNARG
impl Sync for VkDirectDriverLoadingModeLUNARG
impl Unpin for VkDirectDriverLoadingModeLUNARG
impl UnwindSafe for VkDirectDriverLoadingModeLUNARG
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