#[repr(C)]pub struct _zend_oparray_context {Show 14 fields
    pub prev: *mut _zend_oparray_context,
    pub op_array: *mut zend_op_array,
    pub opcodes_size: u32,
    pub vars_size: c_int,
    pub literals_size: c_int,
    pub fast_call_var: u32,
    pub try_catch_offset: u32,
    pub current_brk_cont: c_int,
    pub last_brk_cont: c_int,
    pub brk_cont_array: *mut zend_brk_cont_element,
    pub labels: *mut HashTable,
    pub active_property_info: *const zend_property_info,
    pub active_property_hook_kind: zend_property_hook_kind,
    pub in_jmp_frameless_branch: bool,
}Fields§
§prev: *mut _zend_oparray_context§op_array: *mut zend_op_array§opcodes_size: u32§vars_size: c_int§literals_size: c_int§fast_call_var: u32§try_catch_offset: u32§current_brk_cont: c_int§last_brk_cont: c_int§brk_cont_array: *mut zend_brk_cont_element§labels: *mut HashTable§active_property_info: *const zend_property_info§active_property_hook_kind: zend_property_hook_kind§in_jmp_frameless_branch: boolTrait Implementations§
Source§impl Clone for _zend_oparray_context
 
impl Clone for _zend_oparray_context
Source§fn clone(&self) -> _zend_oparray_context
 
fn clone(&self) -> _zend_oparray_context
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreSource§impl Debug for _zend_oparray_context
 
impl Debug for _zend_oparray_context
impl Copy for _zend_oparray_context
Auto Trait Implementations§
impl Freeze for _zend_oparray_context
impl RefUnwindSafe for _zend_oparray_context
impl !Send for _zend_oparray_context
impl !Sync for _zend_oparray_context
impl Unpin for _zend_oparray_context
impl UnwindSafe for _zend_oparray_context
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more