#[repr(C)]pub struct VkPerformanceCounterDescriptionKHR {
pub sType: VkStructureType,
pub pNext: *mut c_void,
pub flags: VkPerformanceCounterDescriptionFlagsKHR,
pub name: [c_char; 256],
pub category: [c_char; 256],
pub description: [c_char; 256],
}
Fields§
§sType: VkStructureType
§pNext: *mut c_void
§flags: VkPerformanceCounterDescriptionFlagsKHR
§name: [c_char; 256]
§category: [c_char; 256]
§description: [c_char; 256]
Trait Implementations§
Source§impl Clone for VkPerformanceCounterDescriptionKHR
impl Clone for VkPerformanceCounterDescriptionKHR
Source§fn clone(&self) -> VkPerformanceCounterDescriptionKHR
fn clone(&self) -> VkPerformanceCounterDescriptionKHR
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 VkPerformanceCounterDescriptionKHR
Auto Trait Implementations§
impl Freeze for VkPerformanceCounterDescriptionKHR
impl RefUnwindSafe for VkPerformanceCounterDescriptionKHR
impl !Send for VkPerformanceCounterDescriptionKHR
impl !Sync for VkPerformanceCounterDescriptionKHR
impl Unpin for VkPerformanceCounterDescriptionKHR
impl UnwindSafe for VkPerformanceCounterDescriptionKHR
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