Struct rbspy_ruby_structs::ruby_2_7_1::rb_iseq_constant_body[][src]

#[repr(C)]pub struct rb_iseq_constant_body {
    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 ci_kw_size: c_uint,
    pub stack_max: c_uint,
    pub catch_except_p: c_char,
    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 iseq_unique_id: usize,
}

Fields

type_: rb_iseq_constant_body_iseq_typeiseq_size: c_uintiseq_encoded: *mut VALUEparam: rb_iseq_constant_body__bindgen_ty_1location: rb_iseq_location_tinsns_info: rb_iseq_constant_body_iseq_insn_infolocal_table: *const IDcatch_table: *mut iseq_catch_tableparent_iseq: *const rb_iseq_structlocal_iseq: *mut rb_iseq_structis_entries: *mut iseq_inline_storage_entrycall_data: *mut rb_call_datavariable: rb_iseq_constant_body__bindgen_ty_2local_table_size: c_uintis_size: c_uintci_size: c_uintci_kw_size: c_uintstack_max: c_uintcatch_except_p: c_charjit_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_unitiseq_unique_id: usize

Trait Implementations

impl Clone for rb_iseq_constant_body[src]

impl Copy for rb_iseq_constant_body[src]

impl Debug for rb_iseq_constant_body[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.