#[repr(C)]
pub struct _zend_compiler_globals {
Show 46 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 auto_globals: *mut HashTable, pub parse_error: zend_uchar, pub in_compilation: bool, pub short_tags: bool, pub unclean_shutdown: bool, pub ini_parser_unbuffered_errors: bool, pub open_files: zend_llist, pub ini_parser_param: *mut _zend_ini_parser_param, pub skip_shebang: bool, pub increment_lineno: bool, pub variable_width_locale: bool, pub ascii_compatible_locale: 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: bool, pub detect_unicode: bool, pub encoding_declared: 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_real_base: *mut c_void, 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 unlinked_uses: *mut HashTable, pub current_linking_class: *mut zend_class_entry, pub rtd_key_counter: u32, pub short_circuiting_opnums: zend_stack,
}

Fields§

§loop_var_stack: zend_stack§active_class_entry: *mut zend_class_entry§compiled_filename: *mut zend_string§zend_lineno: c_int§active_op_array: *mut zend_op_array§function_table: *mut HashTable§class_table: *mut HashTable§auto_globals: *mut HashTable§parse_error: zend_uchar§in_compilation: bool§short_tags: bool§unclean_shutdown: bool§ini_parser_unbuffered_errors: bool§open_files: zend_llist§ini_parser_param: *mut _zend_ini_parser_param§skip_shebang: bool§increment_lineno: bool§variable_width_locale: bool§ascii_compatible_locale: bool§doc_comment: *mut zend_string§extra_fn_flags: u32§compiler_options: u32§context: zend_oparray_context§file_context: zend_file_context§arena: *mut zend_arena§interned_strings: HashTable§script_encoding_list: *mut *const zend_encoding§script_encoding_list_size: usize§multibyte: bool§detect_unicode: bool§encoding_declared: bool§ast: *mut zend_ast§ast_arena: *mut zend_arena§delayed_oplines_stack: zend_stack§memoized_exprs: *mut HashTable§memoize_mode: c_int§map_ptr_real_base: *mut c_void§map_ptr_base: *mut c_void§map_ptr_size: usize§map_ptr_last: usize§delayed_variance_obligations: *mut HashTable§delayed_autoloads: *mut HashTable§unlinked_uses: *mut HashTable§current_linking_class: *mut zend_class_entry§rtd_key_counter: u32§short_circuiting_opnums: zend_stack

Trait Implementations§

source§

impl Clone for _zend_compiler_globals

source§

fn clone(&self) -> _zend_compiler_globals

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Default for _zend_compiler_globals

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Copy for _zend_compiler_globals

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

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

Performs the conversion.