#[repr(C)]
pub union PerformanceValueDataINTEL {
pub value32: u32,
pub value64: u64,
pub value_float: f32,
pub value_bool: u32,
pub value_string: *const i8,
}Expand description
Fields
value32: u32value64: u64value_float: f32value_bool: u32value_string: *const i8Trait Implementations
sourceimpl Clone for PerformanceValueDataINTEL
impl Clone for PerformanceValueDataINTEL
sourcefn clone(&self) -> PerformanceValueDataINTEL
fn clone(&self) -> PerformanceValueDataINTEL
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 PerformanceValueDataINTEL
impl Default for PerformanceValueDataINTEL
sourcefn default() -> PerformanceValueDataINTEL
fn default() -> PerformanceValueDataINTEL
Returns the “default value” for a type. Read more
impl Copy for PerformanceValueDataINTEL
Auto Trait Implementations
impl RefUnwindSafe for PerformanceValueDataINTEL
impl !Send for PerformanceValueDataINTEL
impl !Sync for PerformanceValueDataINTEL
impl Unpin for PerformanceValueDataINTEL
impl UnwindSafe for PerformanceValueDataINTEL
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