Struct rbspy_ruby_structs::ruby_2_6_4::rb_execution_context_struct[][src]

#[repr(C)]pub struct rb_execution_context_struct {
    pub vm_stack: *mut VALUE,
    pub vm_stack_size: size_t,
    pub cfp: *mut rb_control_frame_t,
    pub tag: *mut rb_vm_tag,
    pub protect_tag: *mut rb_vm_protect_tag,
    pub interrupt_flag: rb_atomic_t,
    pub interrupt_mask: rb_atomic_t,
    pub fiber_ptr: *mut rb_fiber_t,
    pub thread_ptr: *mut rb_thread_struct,
    pub local_storage: *mut st_table,
    pub local_storage_recursive_hash: VALUE,
    pub local_storage_recursive_hash_for_trace: VALUE,
    pub root_lep: *const VALUE,
    pub root_svar: VALUE,
    pub ensure_list: *mut rb_ensure_list_t,
    pub trace_arg: *mut rb_trace_arg_struct,
    pub errinfo: VALUE,
    pub passed_block_handler: VALUE,
    pub raised_flag: u8,
    pub _bitfield_align_1: [u8; 0],
    pub _bitfield_1: __BindgenBitfieldUnit<[u8; 1]>,
    pub private_const_reference: VALUE,
    pub machine: rb_execution_context_struct__bindgen_ty_1,
}

Fields

vm_stack: *mut VALUEvm_stack_size: size_tcfp: *mut rb_control_frame_ttag: *mut rb_vm_tagprotect_tag: *mut rb_vm_protect_taginterrupt_flag: rb_atomic_tinterrupt_mask: rb_atomic_tfiber_ptr: *mut rb_fiber_tthread_ptr: *mut rb_thread_structlocal_storage: *mut st_tablelocal_storage_recursive_hash: VALUElocal_storage_recursive_hash_for_trace: VALUEroot_lep: *const VALUEroot_svar: VALUEensure_list: *mut rb_ensure_list_ttrace_arg: *mut rb_trace_arg_structerrinfo: VALUEpassed_block_handler: VALUEraised_flag: u8_bitfield_align_1: [u8; 0]_bitfield_1: __BindgenBitfieldUnit<[u8; 1]>private_const_reference: VALUEmachine: rb_execution_context_struct__bindgen_ty_1

Implementations

impl rb_execution_context_struct[src]

Trait Implementations

impl Clone for rb_execution_context_struct[src]

impl Copy for rb_execution_context_struct[src]

impl Debug for rb_execution_context_struct[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.