Struct ash::vk::QueryPoolPerformanceCreateInfoKHR
source · #[repr(C)]pub struct QueryPoolPerformanceCreateInfoKHR<'a> {
pub s_type: StructureType,
pub p_next: *const c_void,
pub queue_family_index: u32,
pub counter_index_count: u32,
pub p_counter_indices: *const u32,
pub _marker: PhantomData<&'a ()>,
}
Expand description
Fields§
§s_type: StructureType
§p_next: *const c_void
§queue_family_index: u32
§counter_index_count: u32
§p_counter_indices: *const u32
§_marker: PhantomData<&'a ()>
Implementations§
source§impl<'a> QueryPoolPerformanceCreateInfoKHR<'a>
impl<'a> QueryPoolPerformanceCreateInfoKHR<'a>
pub fn queue_family_index(self, queue_family_index: u32) -> Self
pub fn counter_indices(self, counter_indices: &'a [u32]) -> Self
Trait Implementations§
source§impl<'a> Clone for QueryPoolPerformanceCreateInfoKHR<'a>
impl<'a> Clone for QueryPoolPerformanceCreateInfoKHR<'a>
source§fn clone(&self) -> QueryPoolPerformanceCreateInfoKHR<'a>
fn clone(&self) -> QueryPoolPerformanceCreateInfoKHR<'a>
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<'a> Debug for QueryPoolPerformanceCreateInfoKHR<'a>
impl<'a> Debug for QueryPoolPerformanceCreateInfoKHR<'a>
source§impl Default for QueryPoolPerformanceCreateInfoKHR<'_>
impl Default for QueryPoolPerformanceCreateInfoKHR<'_>
source§impl<'a> TaggedStructure for QueryPoolPerformanceCreateInfoKHR<'a>
impl<'a> TaggedStructure for QueryPoolPerformanceCreateInfoKHR<'a>
const STRUCTURE_TYPE: StructureType = StructureType::QUERY_POOL_PERFORMANCE_CREATE_INFO_KHR
impl<'a> Copy for QueryPoolPerformanceCreateInfoKHR<'a>
impl ExtendsQueryPoolCreateInfo for QueryPoolPerformanceCreateInfoKHR<'_>
impl Send for QueryPoolPerformanceCreateInfoKHR<'_>
impl Sync for QueryPoolPerformanceCreateInfoKHR<'_>
Auto Trait Implementations§
impl<'a> Freeze for QueryPoolPerformanceCreateInfoKHR<'a>
impl<'a> RefUnwindSafe for QueryPoolPerformanceCreateInfoKHR<'a>
impl<'a> Unpin for QueryPoolPerformanceCreateInfoKHR<'a>
impl<'a> UnwindSafe for QueryPoolPerformanceCreateInfoKHR<'a>
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