#[repr(C)]
pub union Emojicode_Value {
pub raw: Emojicode_EmojicodeInteger,
pub character: EmojicodeChar,
pub doubl: f64,
pub object: *mut Emojicode_Object,
pub klass: *mut Emojicode_Class,
pub value: *mut Emojicode_Value,
/* private fields */
}
Expand description
A one-Emojicode-word large value without type information.
Fields§
§raw: Emojicode_EmojicodeInteger
§character: EmojicodeChar
§doubl: f64
§object: *mut Emojicode_Object
§klass: *mut Emojicode_Class
§value: *mut Emojicode_Value
Trait Implementations§
Source§impl Clone for Emojicode_Value
impl Clone for Emojicode_Value
Source§fn clone(&self) -> Emojicode_Value
fn clone(&self) -> Emojicode_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 Emojicode_Value
Auto Trait Implementations§
impl Freeze for Emojicode_Value
impl RefUnwindSafe for Emojicode_Value
impl !Send for Emojicode_Value
impl !Sync for Emojicode_Value
impl Unpin for Emojicode_Value
impl UnwindSafe for Emojicode_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