#[non_exhaustive]#[repr(u32)]pub enum VkDisplayEventTypeEXT {
VK_DISPLAY_EVENT_TYPE_FIRST_PIXEL_OUT_EXT = 0,
VK_DISPLAY_EVENT_TYPE_MAX_ENUM_EXT = 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 VkDisplayEventTypeEXT
impl Clone for VkDisplayEventTypeEXT
Source§fn clone(&self) -> VkDisplayEventTypeEXT
fn clone(&self) -> VkDisplayEventTypeEXT
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 VkDisplayEventTypeEXT
impl Debug for VkDisplayEventTypeEXT
Source§impl Hash for VkDisplayEventTypeEXT
impl Hash for VkDisplayEventTypeEXT
Source§impl PartialEq for VkDisplayEventTypeEXT
impl PartialEq for VkDisplayEventTypeEXT
impl Copy for VkDisplayEventTypeEXT
impl Eq for VkDisplayEventTypeEXT
impl StructuralPartialEq for VkDisplayEventTypeEXT
Auto Trait Implementations§
impl Freeze for VkDisplayEventTypeEXT
impl RefUnwindSafe for VkDisplayEventTypeEXT
impl Send for VkDisplayEventTypeEXT
impl Sync for VkDisplayEventTypeEXT
impl Unpin for VkDisplayEventTypeEXT
impl UnwindSafe for VkDisplayEventTypeEXT
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