Struct php_all_sys::php72::_zend_compiler_globals[][src]

#[repr(C)]pub struct _zend_compiler_globals {
    pub loop_var_stack: zend_stack,
    pub active_class_entry: *mut zend_class_entry,
    pub compiled_filename: *mut zend_string,
    pub zend_lineno: c_int,
    pub active_op_array: *mut zend_op_array,
    pub function_table: *mut HashTable,
    pub class_table: *mut HashTable,
    pub filenames_table: HashTable,
    pub auto_globals: *mut HashTable,
    pub parse_error: zend_bool,
    pub in_compilation: zend_bool,
    pub short_tags: zend_bool,
    pub unclean_shutdown: zend_bool,
    pub ini_parser_unbuffered_errors: zend_bool,
    pub open_files: zend_llist,
    pub ini_parser_param: *mut _zend_ini_parser_param,
    pub start_lineno: u32,
    pub increment_lineno: zend_bool,
    pub doc_comment: *mut zend_string,
    pub extra_fn_flags: u32,
    pub compiler_options: u32,
    pub context: zend_oparray_context,
    pub file_context: zend_file_context,
    pub arena: *mut zend_arena,
    pub interned_strings: HashTable,
    pub script_encoding_list: *mut *const zend_encoding,
    pub script_encoding_list_size: size_t,
    pub multibyte: zend_bool,
    pub detect_unicode: zend_bool,
    pub encoding_declared: zend_bool,
    pub ast: *mut zend_ast,
    pub ast_arena: *mut zend_arena,
    pub delayed_oplines_stack: zend_stack,
}

Fields

loop_var_stack: zend_stackactive_class_entry: *mut zend_class_entrycompiled_filename: *mut zend_stringzend_lineno: c_intactive_op_array: *mut zend_op_arrayfunction_table: *mut HashTableclass_table: *mut HashTablefilenames_table: HashTableauto_globals: *mut HashTableparse_error: zend_boolin_compilation: zend_boolshort_tags: zend_boolunclean_shutdown: zend_boolini_parser_unbuffered_errors: zend_boolopen_files: zend_llistini_parser_param: *mut _zend_ini_parser_paramstart_lineno: u32increment_lineno: zend_booldoc_comment: *mut zend_stringextra_fn_flags: u32compiler_options: u32context: zend_oparray_contextfile_context: zend_file_contextarena: *mut zend_arenainterned_strings: HashTablescript_encoding_list: *mut *const zend_encodingscript_encoding_list_size: size_tmultibyte: zend_booldetect_unicode: zend_boolencoding_declared: zend_boolast: *mut zend_astast_arena: *mut zend_arenadelayed_oplines_stack: zend_stack

Trait Implementations

impl Clone for _zend_compiler_globals[src]

impl Copy for _zend_compiler_globals[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.