#[repr(C)]pub struct rb_iseq_constant_body {Show 25 fields
pub type_: rb_iseq_constant_body_iseq_type,
pub iseq_size: c_uint,
pub iseq_encoded: *mut 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: *mut 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 call_data: *mut rb_call_data,
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 stack_max: c_uint,
pub catch_except_p: c_char,
pub builtin_inline_p: bool,
pub outer_variables: *mut rb_id_table,
pub mandatory_only_iseq: *const rb_iseq_t,
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 yjit_blocks: rb_yjit_block_array_array_t,
}
Fields
type_: rb_iseq_constant_body_iseq_type
iseq_size: c_uint
iseq_encoded: *mut VALUE
param: rb_iseq_constant_body__bindgen_ty_1
location: rb_iseq_location_t
insns_info: rb_iseq_constant_body_iseq_insn_info
local_table: *const ID
catch_table: *mut iseq_catch_table
parent_iseq: *const rb_iseq_struct
local_iseq: *mut rb_iseq_struct
is_entries: *mut iseq_inline_storage_entry
call_data: *mut rb_call_data
variable: rb_iseq_constant_body__bindgen_ty_2
local_table_size: c_uint
is_size: c_uint
ci_size: c_uint
stack_max: c_uint
catch_except_p: c_char
builtin_inline_p: bool
outer_variables: *mut rb_id_table
mandatory_only_iseq: *const rb_iseq_t
jit_func: Option<unsafe extern "C" fn(arg1: *mut rb_execution_context_struct, arg2: *mut rb_control_frame_struct) -> VALUE>
total_calls: c_ulong
jit_unit: *mut rb_mjit_unit
yjit_blocks: rb_yjit_block_array_array_t
Trait 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 moresourceimpl 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 Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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