#[repr(C)]pub struct rb_iseq_constant_body {Show 23 fields
pub type_: rb_iseq_constant_body_iseq_type,
pub iseq_size: c_uint,
pub iseq_encoded: *const VALUE,
pub param: rb_iseq_constant_body__bindgen_ty_1,
pub location: rb_iseq_location_t,
pub insns_info: rb_iseq_constant_body_iseq_insn_info,
pub local_table: *const ID,
pub catch_table: *const iseq_catch_table,
pub parent_iseq: *const rb_iseq_struct,
pub local_iseq: *mut rb_iseq_struct,
pub is_entries: *mut iseq_inline_storage_entry,
pub ci_entries: *mut rb_call_info,
pub cc_entries: *mut rb_call_cache,
pub variable: rb_iseq_constant_body__bindgen_ty_2,
pub local_table_size: c_uint,
pub is_size: c_uint,
pub ci_size: c_uint,
pub ci_kw_size: c_uint,
pub stack_max: c_uint,
pub jit_func: Option<unsafe extern "C" fn(arg1: *mut rb_execution_context_struct, arg2: *mut rb_control_frame_struct) -> VALUE>,
pub total_calls: c_ulong,
pub jit_unit: *mut rb_mjit_unit,
pub catch_except_p: c_char,
}Fields
type_: rb_iseq_constant_body_iseq_typeiseq_size: c_uintiseq_encoded: *const VALUEparam: rb_iseq_constant_body__bindgen_ty_1location: rb_iseq_location_tinsns_info: rb_iseq_constant_body_iseq_insn_infolocal_table: *const IDcatch_table: *const iseq_catch_tableparent_iseq: *const rb_iseq_structlocal_iseq: *mut rb_iseq_structis_entries: *mut iseq_inline_storage_entryci_entries: *mut rb_call_infocc_entries: *mut rb_call_cachevariable: rb_iseq_constant_body__bindgen_ty_2local_table_size: c_uintis_size: c_uintci_size: c_uintci_kw_size: c_uintstack_max: c_uintjit_func: Option<unsafe extern "C" fn(arg1: *mut rb_execution_context_struct, arg2: *mut rb_control_frame_struct) -> VALUE>total_calls: c_ulongjit_unit: *mut rb_mjit_unitcatch_except_p: c_charTrait Implementations
sourceimpl Clone for rb_iseq_constant_body
impl Clone for rb_iseq_constant_body
sourcefn clone(&self) -> rb_iseq_constant_body
fn clone(&self) -> rb_iseq_constant_body
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for rb_iseq_constant_body
impl Debug for rb_iseq_constant_body
impl Copy for rb_iseq_constant_body
Auto Trait Implementations
impl RefUnwindSafe for rb_iseq_constant_body
impl !Send for rb_iseq_constant_body
impl !Sync for rb_iseq_constant_body
impl Unpin for rb_iseq_constant_body
impl UnwindSafe for rb_iseq_constant_body
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more