pub union GlobalValue {
pub i_32: i32,
pub i_64: i64,
pub f_32: f32,
pub f_64: f64,
}
Fields§
§i_32: i32
§i_64: i64
§f_32: f32
§f_64: f64
Trait Implementations§
Source§impl Clone for GlobalValue
impl Clone for GlobalValue
Source§fn clone(&self) -> GlobalValue
fn clone(&self) -> GlobalValue
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 moreSource§impl Debug for GlobalValue
impl Debug for GlobalValue
impl Copy for GlobalValue
Auto Trait Implementations§
impl Freeze for GlobalValue
impl RefUnwindSafe for GlobalValue
impl Send for GlobalValue
impl Sync for GlobalValue
impl Unpin for GlobalValue
impl UnwindSafe for GlobalValue
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