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