#[non_exhaustive]#[repr(u32)]pub enum VkQueryResultFlagBits {
VK_QUERY_RESULT_64_BIT = 1,
VK_QUERY_RESULT_WAIT_BIT = 2,
VK_QUERY_RESULT_WITH_AVAILABILITY_BIT = 4,
VK_QUERY_RESULT_PARTIAL_BIT = 8,
VK_QUERY_RESULT_FLAG_BITS_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_QUERY_RESULT_64_BIT = 1
VK_QUERY_RESULT_WAIT_BIT = 2
VK_QUERY_RESULT_WITH_AVAILABILITY_BIT = 4
VK_QUERY_RESULT_PARTIAL_BIT = 8
VK_QUERY_RESULT_FLAG_BITS_MAX_ENUM = 2_147_483_647
Trait Implementations§
Source§impl Clone for VkQueryResultFlagBits
impl Clone for VkQueryResultFlagBits
Source§fn clone(&self) -> VkQueryResultFlagBits
fn clone(&self) -> VkQueryResultFlagBits
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 VkQueryResultFlagBits
impl Debug for VkQueryResultFlagBits
Source§impl Hash for VkQueryResultFlagBits
impl Hash for VkQueryResultFlagBits
Source§impl PartialEq for VkQueryResultFlagBits
impl PartialEq for VkQueryResultFlagBits
impl Copy for VkQueryResultFlagBits
impl Eq for VkQueryResultFlagBits
impl StructuralPartialEq for VkQueryResultFlagBits
Auto Trait Implementations§
impl Freeze for VkQueryResultFlagBits
impl RefUnwindSafe for VkQueryResultFlagBits
impl Send for VkQueryResultFlagBits
impl Sync for VkQueryResultFlagBits
impl Unpin for VkQueryResultFlagBits
impl UnwindSafe for VkQueryResultFlagBits
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