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