#[repr(C)]
pub union ss_plugin_metric_value {
pub u32_: u32,
pub s32: i32,
pub u64_: u64,
pub s64: i64,
pub d: f64,
pub f: f32,
pub i: c_int,
}
Fields§
§u32_: u32
§s32: i32
§u64_: u64
§s64: i64
§d: f64
§f: f32
§i: c_int
Trait Implementations§
Source§impl Clone for ss_plugin_metric_value
impl Clone for ss_plugin_metric_value
Source§fn clone(&self) -> ss_plugin_metric_value
fn clone(&self) -> ss_plugin_metric_value
Returns a copy 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 moreimpl Copy for ss_plugin_metric_value
Auto Trait Implementations§
impl Freeze for ss_plugin_metric_value
impl RefUnwindSafe for ss_plugin_metric_value
impl Send for ss_plugin_metric_value
impl Sync for ss_plugin_metric_value
impl Unpin for ss_plugin_metric_value
impl UnwindSafe for ss_plugin_metric_value
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