Struct phper_sys::_zend_execute_data
source · [−]#[repr(C)]pub struct _zend_execute_data {
pub opline: *const zend_op,
pub call: *mut zend_execute_data,
pub return_value: *mut zval,
pub func: *mut zend_function,
pub This: zval,
pub prev_execute_data: *mut zend_execute_data,
pub symbol_table: *mut zend_array,
pub run_time_cache: *mut *mut c_void,
}
Fields
opline: *const zend_op
call: *mut zend_execute_data
return_value: *mut zval
func: *mut zend_function
This: zval
prev_execute_data: *mut zend_execute_data
symbol_table: *mut zend_array
run_time_cache: *mut *mut c_void
Trait Implementations
sourceimpl Clone for _zend_execute_data
impl Clone for _zend_execute_data
sourcefn clone(&self) -> _zend_execute_data
fn clone(&self) -> _zend_execute_data
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 more
impl Copy for _zend_execute_data
Auto Trait Implementations
impl RefUnwindSafe for _zend_execute_data
impl !Send for _zend_execute_data
impl !Sync for _zend_execute_data
impl Unpin for _zend_execute_data
impl UnwindSafe for _zend_execute_data
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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