#[repr(C)]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_WITH_STATUS_BIT_KHR = 16,
VK_QUERY_RESULT_FLAG_BITS_MAX_ENUM = 2_147_483_647,
}Expand description
enum VkQueryResultFlagBits from VK_VERSION_1_0
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_WITH_STATUS_BIT_KHR = 16
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 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 VkQueryResultFlagBits
impl Debug for VkQueryResultFlagBits
Source§impl PartialEq for VkQueryResultFlagBits
impl PartialEq for VkQueryResultFlagBits
impl Copy 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