#[non_exhaustive]#[repr(u32)]pub enum VkImageTiling {
VK_IMAGE_TILING_OPTIMAL = 0,
VK_IMAGE_TILING_LINEAR = 1,
VK_IMAGE_TILING_DRM_FORMAT_MODIFIER_EXT = 1_000_158_000,
VK_IMAGE_TILING_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_TILING_OPTIMAL = 0
VK_IMAGE_TILING_LINEAR = 1
VK_IMAGE_TILING_DRM_FORMAT_MODIFIER_EXT = 1_000_158_000
VK_IMAGE_TILING_MAX_ENUM = 2_147_483_647
Trait Implementations§
Source§impl Clone for VkImageTiling
impl Clone for VkImageTiling
Source§fn clone(&self) -> VkImageTiling
fn clone(&self) -> VkImageTiling
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 VkImageTiling
impl Debug for VkImageTiling
Source§impl Hash for VkImageTiling
impl Hash for VkImageTiling
Source§impl PartialEq for VkImageTiling
impl PartialEq for VkImageTiling
impl Copy for VkImageTiling
impl Eq for VkImageTiling
impl StructuralPartialEq for VkImageTiling
Auto Trait Implementations§
impl Freeze for VkImageTiling
impl RefUnwindSafe for VkImageTiling
impl Send for VkImageTiling
impl Sync for VkImageTiling
impl Unpin for VkImageTiling
impl UnwindSafe for VkImageTiling
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