#[repr(C)]
pub union HkbVariableValue {
pub b: bool,
pub i: i32,
pub f: f32,
}Fields§
§b: bool§i: i32§f: f32Auto Trait Implementations§
impl Freeze for HkbVariableValue
impl RefUnwindSafe for HkbVariableValue
impl Send for HkbVariableValue
impl Sync for HkbVariableValue
impl Unpin for HkbVariableValue
impl UnwindSafe for HkbVariableValue
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