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