Struct php_all_sys::php56_zts::_zend_execute_data[][src]

#[repr(C)]pub struct _zend_execute_data {
    pub opline: *mut _zend_op,
    pub function_state: zend_function_state,
    pub op_array: *mut zend_op_array,
    pub object: *mut zval,
    pub symbol_table: *mut HashTable,
    pub prev_execute_data: *mut _zend_execute_data,
    pub old_error_reporting: *mut zval,
    pub nested: zend_bool,
    pub original_return_value: *mut *mut zval,
    pub current_scope: *mut zend_class_entry,
    pub current_called_scope: *mut zend_class_entry,
    pub current_this: *mut zval,
    pub fast_ret: *mut _zend_op,
    pub delayed_exception: *mut zval,
    pub call_slots: *mut call_slot,
    pub call: *mut call_slot,
}

Fields

opline: *mut _zend_opfunction_state: zend_function_stateop_array: *mut zend_op_arrayobject: *mut zvalsymbol_table: *mut HashTableprev_execute_data: *mut _zend_execute_dataold_error_reporting: *mut zvalnested: zend_booloriginal_return_value: *mut *mut zvalcurrent_scope: *mut zend_class_entrycurrent_called_scope: *mut zend_class_entrycurrent_this: *mut zvalfast_ret: *mut _zend_opdelayed_exception: *mut zvalcall_slots: *mut call_slotcall: *mut call_slot

Trait Implementations

impl Clone for _zend_execute_data[src]

impl Copy for _zend_execute_data[src]

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