#[non_exhaustive]#[repr(u32)]pub enum VkQueryType {
VK_QUERY_TYPE_OCCLUSION = 0,
VK_QUERY_TYPE_PIPELINE_STATISTICS = 1,
VK_QUERY_TYPE_TIMESTAMP = 2,
VK_QUERY_TYPE_TRANSFORM_FEEDBACK_STREAM_EXT = 1_000_028_004,
VK_QUERY_TYPE_PERFORMANCE_QUERY_KHR = 1_000_116_000,
VK_QUERY_TYPE_ACCELERATION_STRUCTURE_COMPACTED_SIZE_KHR = 1_000_150_000,
VK_QUERY_TYPE_ACCELERATION_STRUCTURE_SERIALIZATION_SIZE_KHR = 1_000_150_001,
VK_QUERY_TYPE_ACCELERATION_STRUCTURE_COMPACTED_SIZE_NV = 1_000_165_000,
VK_QUERY_TYPE_PERFORMANCE_QUERY_INTEL = 1_000_210_000,
VK_QUERY_TYPE_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_TYPE_OCCLUSION = 0
VK_QUERY_TYPE_PIPELINE_STATISTICS = 1
VK_QUERY_TYPE_TIMESTAMP = 2
VK_QUERY_TYPE_TRANSFORM_FEEDBACK_STREAM_EXT = 1_000_028_004
VK_QUERY_TYPE_PERFORMANCE_QUERY_KHR = 1_000_116_000
VK_QUERY_TYPE_ACCELERATION_STRUCTURE_COMPACTED_SIZE_KHR = 1_000_150_000
VK_QUERY_TYPE_ACCELERATION_STRUCTURE_SERIALIZATION_SIZE_KHR = 1_000_150_001
VK_QUERY_TYPE_ACCELERATION_STRUCTURE_COMPACTED_SIZE_NV = 1_000_165_000
VK_QUERY_TYPE_PERFORMANCE_QUERY_INTEL = 1_000_210_000
VK_QUERY_TYPE_MAX_ENUM = 2_147_483_647
Trait Implementations§
Source§impl Clone for VkQueryType
impl Clone for VkQueryType
Source§fn clone(&self) -> VkQueryType
fn clone(&self) -> VkQueryType
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 VkQueryType
impl Debug for VkQueryType
Source§impl Hash for VkQueryType
impl Hash for VkQueryType
Source§impl PartialEq for VkQueryType
impl PartialEq for VkQueryType
impl Copy for VkQueryType
impl Eq for VkQueryType
impl StructuralPartialEq for VkQueryType
Auto Trait Implementations§
impl Freeze for VkQueryType
impl RefUnwindSafe for VkQueryType
impl Send for VkQueryType
impl Sync for VkQueryType
impl Unpin for VkQueryType
impl UnwindSafe for VkQueryType
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