Struct php_all_sys::php71::_zend_oparray_context[][src]

#[repr(C)]pub struct _zend_oparray_context {
    pub opcodes_size: u32,
    pub vars_size: c_int,
    pub literals_size: c_int,
    pub backpatch_count: c_int,
    pub in_finally: 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,
}

Fields

opcodes_size: u32vars_size: c_intliterals_size: c_intbackpatch_count: c_intin_finally: c_intfast_call_var: u32try_catch_offset: u32current_brk_cont: c_intlast_brk_cont: c_intbrk_cont_array: *mut zend_brk_cont_elementlabels: *mut HashTable

Trait Implementations

impl Clone for _zend_oparray_context[src]

impl Copy for _zend_oparray_context[src]

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