#[repr(C)]pub union SimValueDataRaw {
pub b: bool,
pub u32: u32,
pub i32: i32,
pub f32: f32,
pub f64: f64,
}Fields§
§b: bool§u32: u32§i32: i32§f32: f32§f64: f64Trait Implementations§
Source§impl Clone for SimValueDataRaw
impl Clone for SimValueDataRaw
Source§fn clone(&self) -> SimValueDataRaw
fn clone(&self) -> SimValueDataRaw
Returns a duplicate 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 SimValueDataRaw
Auto Trait Implementations§
impl Freeze for SimValueDataRaw
impl RefUnwindSafe for SimValueDataRaw
impl Send for SimValueDataRaw
impl Sync for SimValueDataRaw
impl Unpin for SimValueDataRaw
impl UnsafeUnpin for SimValueDataRaw
impl UnwindSafe for SimValueDataRaw
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