#[non_exhaustive]#[repr(u32)]pub enum VkAttachmentLoadOp {
VK_ATTACHMENT_LOAD_OP_LOAD = 0,
VK_ATTACHMENT_LOAD_OP_CLEAR = 1,
VK_ATTACHMENT_LOAD_OP_DONT_CARE = 2,
VK_ATTACHMENT_LOAD_OP_NONE_EXT = 1_000_400_000,
VK_ATTACHMENT_LOAD_OP_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_ATTACHMENT_LOAD_OP_LOAD = 0
VK_ATTACHMENT_LOAD_OP_CLEAR = 1
VK_ATTACHMENT_LOAD_OP_DONT_CARE = 2
VK_ATTACHMENT_LOAD_OP_NONE_EXT = 1_000_400_000
VK_ATTACHMENT_LOAD_OP_MAX_ENUM = 2_147_483_647
Trait Implementations§
Source§impl Clone for VkAttachmentLoadOp
impl Clone for VkAttachmentLoadOp
Source§fn clone(&self) -> VkAttachmentLoadOp
fn clone(&self) -> VkAttachmentLoadOp
Returns a copy 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 VkAttachmentLoadOp
impl Debug for VkAttachmentLoadOp
Source§impl Hash for VkAttachmentLoadOp
impl Hash for VkAttachmentLoadOp
Source§impl PartialEq for VkAttachmentLoadOp
impl PartialEq for VkAttachmentLoadOp
impl Copy for VkAttachmentLoadOp
impl Eq for VkAttachmentLoadOp
impl StructuralPartialEq for VkAttachmentLoadOp
Auto Trait Implementations§
impl Freeze for VkAttachmentLoadOp
impl RefUnwindSafe for VkAttachmentLoadOp
impl Send for VkAttachmentLoadOp
impl Sync for VkAttachmentLoadOp
impl Unpin for VkAttachmentLoadOp
impl UnwindSafe for VkAttachmentLoadOp
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