Struct php_all_sys::php54::_zend_compiler_globals[][src]

#[repr(C)]pub struct _zend_compiler_globals {
    pub bp_stack: zend_stack,
    pub switch_cond_stack: zend_stack,
    pub foreach_copy_stack: zend_stack,
    pub object_stack: zend_stack,
    pub declare_stack: zend_stack,
    pub active_class_entry: *mut zend_class_entry,
    pub list_llist: zend_llist,
    pub dimension_llist: zend_llist,
    pub list_stack: zend_stack,
    pub function_call_stack: zend_stack,
    pub compiled_filename: *mut c_char,
    pub zend_lineno: c_int,
    pub heredoc: *mut c_char,
    pub heredoc_len: 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 asp_tags: zend_bool,
    pub declarables: zend_declarables,
    pub unclean_shutdown: zend_bool,
    pub ini_parser_unbuffered_errors: zend_bool,
    pub open_files: zend_llist,
    pub catch_begin: c_long,
    pub ini_parser_param: *mut _zend_ini_parser_param,
    pub interactive: c_int,
    pub start_lineno: zend_uint,
    pub increment_lineno: zend_bool,
    pub implementing_class: znode,
    pub access_type: zend_uint,
    pub doc_comment: *mut c_char,
    pub doc_comment_len: zend_uint,
    pub compiler_options: zend_uint,
    pub current_namespace: *mut zval,
    pub current_import: *mut HashTable,
    pub in_namespace: zend_bool,
    pub has_bracketed_namespaces: zend_bool,
    pub context: zend_compiler_context,
    pub context_stack: zend_stack,
    pub interned_strings_start: *mut c_char,
    pub interned_strings_end: *mut c_char,
    pub interned_strings_top: *mut c_char,
    pub interned_strings_snapshot_top: *mut c_char,
    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,
}

Fields

bp_stack: zend_stackswitch_cond_stack: zend_stackforeach_copy_stack: zend_stackobject_stack: zend_stackdeclare_stack: zend_stackactive_class_entry: *mut zend_class_entrylist_llist: zend_llistdimension_llist: zend_llistlist_stack: zend_stackfunction_call_stack: zend_stackcompiled_filename: *mut c_charzend_lineno: c_intheredoc: *mut c_charheredoc_len: 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_boolasp_tags: zend_booldeclarables: zend_declarablesunclean_shutdown: zend_boolini_parser_unbuffered_errors: zend_boolopen_files: zend_llistcatch_begin: c_longini_parser_param: *mut _zend_ini_parser_paraminteractive: c_intstart_lineno: zend_uintincrement_lineno: zend_boolimplementing_class: znodeaccess_type: zend_uintdoc_comment: *mut c_chardoc_comment_len: zend_uintcompiler_options: zend_uintcurrent_namespace: *mut zvalcurrent_import: *mut HashTablein_namespace: zend_boolhas_bracketed_namespaces: zend_boolcontext: zend_compiler_contextcontext_stack: zend_stackinterned_strings_start: *mut c_charinterned_strings_end: *mut c_charinterned_strings_top: *mut c_charinterned_strings_snapshot_top: *mut c_charinterned_strings: HashTablescript_encoding_list: *mut *const zend_encodingscript_encoding_list_size: size_tmultibyte: zend_booldetect_unicode: zend_boolencoding_declared: zend_bool

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.