#[repr(C)]pub struct QueryPoolPerformanceCreateInfoKHR {
pub sType: StructureType,
pub pNext: *const c_void,
pub queueFamilyIndex: u32,
pub counterIndexCount: u32,
pub pCounterIndices: *const u32,
}Fields§
§sType: StructureType§pNext: *const c_void§queueFamilyIndex: u32§counterIndexCount: u32§pCounterIndices: *const u32Implementations§
Source§impl QueryPoolPerformanceCreateInfoKHR
impl QueryPoolPerformanceCreateInfoKHR
pub fn new() -> Self
pub fn sType(self, sType: StructureType) -> Self
pub fn pNext(self, pNext: *const c_void) -> Self
pub fn queueFamilyIndex(self, queueFamilyIndex: u32) -> Self
pub fn counterIndexCount(self, counterIndexCount: u32) -> Self
pub fn pCounterIndices(self, pCounterIndices: *const u32) -> Self
Trait Implementations§
Source§impl Clone for QueryPoolPerformanceCreateInfoKHR
impl Clone for QueryPoolPerformanceCreateInfoKHR
Source§fn clone(&self) -> QueryPoolPerformanceCreateInfoKHR
fn clone(&self) -> QueryPoolPerformanceCreateInfoKHR
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 Default for QueryPoolPerformanceCreateInfoKHR
impl Default for QueryPoolPerformanceCreateInfoKHR
Source§fn default() -> QueryPoolPerformanceCreateInfoKHR
fn default() -> QueryPoolPerformanceCreateInfoKHR
Returns the “default value” for a type. Read more
impl Copy for QueryPoolPerformanceCreateInfoKHR
Auto Trait Implementations§
impl Freeze for QueryPoolPerformanceCreateInfoKHR
impl RefUnwindSafe for QueryPoolPerformanceCreateInfoKHR
impl !Send for QueryPoolPerformanceCreateInfoKHR
impl !Sync for QueryPoolPerformanceCreateInfoKHR
impl Unpin for QueryPoolPerformanceCreateInfoKHR
impl UnwindSafe for QueryPoolPerformanceCreateInfoKHR
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