Struct php_all_sys::php54::_zend_execute_data[][src]

#[repr(C)]pub struct _zend_execute_data {
    pub opline: *mut _zend_op,
    pub function_state: zend_function_state,
    pub fbc: *mut zend_function,
    pub called_scope: *mut zend_class_entry,
    pub op_array: *mut zend_op_array,
    pub object: *mut zval,
    pub Ts: *mut _temp_variable,
    pub CVs: *mut *mut *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 current_object: *mut zval,
}

Fields

opline: *mut _zend_opfunction_state: zend_function_statefbc: *mut zend_functioncalled_scope: *mut zend_class_entryop_array: *mut zend_op_arrayobject: *mut zvalTs: *mut _temp_variableCVs: *mut *mut *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 zvalcurrent_object: *mut zval

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.