#[repr(C)]pub struct PerformanceCounterDescriptionKHR {
pub sType: StructureType,
pub pNext: *mut c_void,
pub flags: PerformanceCounterDescriptionFlagsKHR,
pub name: [c_char; 256],
pub category: [c_char; 256],
pub description: [c_char; 256],
}
Fields§
§sType: StructureType
§pNext: *mut c_void
§flags: PerformanceCounterDescriptionFlagsKHR
§name: [c_char; 256]
§category: [c_char; 256]
§description: [c_char; 256]
Trait Implementations§
Source§impl Clone for PerformanceCounterDescriptionKHR
impl Clone for PerformanceCounterDescriptionKHR
Source§fn clone(&self) -> PerformanceCounterDescriptionKHR
fn clone(&self) -> PerformanceCounterDescriptionKHR
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl Copy for PerformanceCounterDescriptionKHR
Auto Trait Implementations§
impl Freeze for PerformanceCounterDescriptionKHR
impl RefUnwindSafe for PerformanceCounterDescriptionKHR
impl !Send for PerformanceCounterDescriptionKHR
impl !Sync for PerformanceCounterDescriptionKHR
impl Unpin for PerformanceCounterDescriptionKHR
impl UnwindSafe for PerformanceCounterDescriptionKHR
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