#[non_exhaustive]#[repr(u32)]pub enum VkImageViewCreateFlagBits {
VK_IMAGE_VIEW_CREATE_FRAGMENT_DENSITY_MAP_DYNAMIC_BIT_EXT = 1,
VK_IMAGE_VIEW_CREATE_DESCRIPTOR_BUFFER_CAPTURE_REPLAY_BIT_EXT = 4,
VK_IMAGE_VIEW_CREATE_FRAGMENT_DENSITY_MAP_DEFERRED_BIT_EXT = 2,
VK_IMAGE_VIEW_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_IMAGE_VIEW_CREATE_FRAGMENT_DENSITY_MAP_DYNAMIC_BIT_EXT = 1
VK_IMAGE_VIEW_CREATE_DESCRIPTOR_BUFFER_CAPTURE_REPLAY_BIT_EXT = 4
VK_IMAGE_VIEW_CREATE_FRAGMENT_DENSITY_MAP_DEFERRED_BIT_EXT = 2
VK_IMAGE_VIEW_CREATE_FLAG_BITS_MAX_ENUM = 2_147_483_647
Trait Implementations§
Source§impl Clone for VkImageViewCreateFlagBits
impl Clone for VkImageViewCreateFlagBits
Source§fn clone(&self) -> VkImageViewCreateFlagBits
fn clone(&self) -> VkImageViewCreateFlagBits
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 VkImageViewCreateFlagBits
impl Debug for VkImageViewCreateFlagBits
Source§impl Hash for VkImageViewCreateFlagBits
impl Hash for VkImageViewCreateFlagBits
impl Copy for VkImageViewCreateFlagBits
impl Eq for VkImageViewCreateFlagBits
impl StructuralPartialEq for VkImageViewCreateFlagBits
Auto Trait Implementations§
impl Freeze for VkImageViewCreateFlagBits
impl RefUnwindSafe for VkImageViewCreateFlagBits
impl Send for VkImageViewCreateFlagBits
impl Sync for VkImageViewCreateFlagBits
impl Unpin for VkImageViewCreateFlagBits
impl UnwindSafe for VkImageViewCreateFlagBits
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