#[repr(C)]pub union mrb_value_ {
pub p: *mut c_void,
pub bp: *mut RBasic,
pub fp: *mut RFloat,
pub ip: *mut RInteger,
pub vp: *mut RCptr,
pub w: usize,
pub value: mrb_value,
}Fields§
§p: *mut c_void§bp: *mut RBasic§fp: *mut RFloat§ip: *mut RInteger§vp: *mut RCptr§w: usize§value: mrb_valueTrait Implementations§
Source§impl Clone for mrb_value_
impl Clone for mrb_value_
Source§fn clone(&self) -> mrb_value_
fn clone(&self) -> mrb_value_
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 mrb_value_
Auto Trait Implementations§
impl Freeze for mrb_value_
impl RefUnwindSafe for mrb_value_
impl !Send for mrb_value_
impl !Sync for mrb_value_
impl Unpin for mrb_value_
impl UnwindSafe for mrb_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