Struct phper_sys::_zend_compiler_globals[][src]

#[repr(C)]
pub struct _zend_compiler_globals {
Show fields 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 skip_shebang: zend_bool, 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: usize, 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, pub memoized_exprs: *mut HashTable, pub memoize_mode: c_int, pub map_ptr_base: *mut c_void, pub map_ptr_size: usize, pub map_ptr_last: usize, pub delayed_variance_obligations: *mut HashTable, pub delayed_autoloads: *mut HashTable, pub rtd_key_counter: u32,
}

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_paramskip_shebang: zend_boolincrement_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: usizemultibyte: zend_booldetect_unicode: zend_boolencoding_declared: zend_boolast: *mut zend_astast_arena: *mut zend_arenadelayed_oplines_stack: zend_stackmemoized_exprs: *mut HashTablememoize_mode: c_intmap_ptr_base: *mut c_voidmap_ptr_size: usizemap_ptr_last: usizedelayed_variance_obligations: *mut HashTabledelayed_autoloads: *mut HashTablertd_key_counter: u32

Trait Implementations

impl Clone for _zend_compiler_globals[src]

fn clone(&self) -> _zend_compiler_globals[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Copy for _zend_compiler_globals[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.