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