#[repr(C)]
pub union PerformanceCounterResultKHR {
pub int32: i32,
pub int64: i64,
pub uint32: u32,
pub uint64: u64,
pub float32: f32,
pub float64: f64,
}Expand description
Fields
int32: i32int64: i64uint32: u32uint64: u64float32: f32float64: f64Trait Implementations
sourceimpl Clone for PerformanceCounterResultKHR
impl Clone for PerformanceCounterResultKHR
sourcefn clone(&self) -> PerformanceCounterResultKHR
fn clone(&self) -> PerformanceCounterResultKHR
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Default for PerformanceCounterResultKHR
impl Default for PerformanceCounterResultKHR
sourcefn default() -> PerformanceCounterResultKHR
fn default() -> PerformanceCounterResultKHR
Returns the “default value” for a type. Read more
impl Copy for PerformanceCounterResultKHR
Auto Trait Implementations
impl RefUnwindSafe for PerformanceCounterResultKHR
impl Send for PerformanceCounterResultKHR
impl Sync for PerformanceCounterResultKHR
impl Unpin for PerformanceCounterResultKHR
impl UnwindSafe for PerformanceCounterResultKHR
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more