#[repr(C)]
pub struct _zend_php_scanner_globals {
Show 25 fields pub yy_in: *mut zend_file_handle, pub yy_out: *mut zend_file_handle, pub yy_leng: c_uint, pub yy_start: *mut c_uchar, pub yy_text: *mut c_uchar, pub yy_cursor: *mut c_uchar, pub yy_marker: *mut c_uchar, pub yy_limit: *mut c_uchar, pub yy_state: c_int, pub state_stack: zend_stack, pub heredoc_label_stack: zend_ptr_stack, pub nest_location_stack: zend_stack, pub heredoc_scan_ahead: bool, pub heredoc_indentation: c_int, pub heredoc_indentation_uses_spaces: bool, pub script_org: *mut c_uchar, pub script_org_size: usize, pub script_filtered: *mut c_uchar, pub script_filtered_size: usize, pub input_filter: zend_encoding_filter, pub output_filter: zend_encoding_filter, pub script_encoding: *const zend_encoding, pub scanned_string_len: c_int, pub on_event: Option<unsafe extern "C" fn(event: zend_php_scanner_event, token: c_int, line: c_int, text: *const c_char, length: usize, context: *mut c_void)>, pub on_event_context: *mut c_void,
}

Fields§

§yy_in: *mut zend_file_handle§yy_out: *mut zend_file_handle§yy_leng: c_uint§yy_start: *mut c_uchar§yy_text: *mut c_uchar§yy_cursor: *mut c_uchar§yy_marker: *mut c_uchar§yy_limit: *mut c_uchar§yy_state: c_int§state_stack: zend_stack§heredoc_label_stack: zend_ptr_stack§nest_location_stack: zend_stack§heredoc_scan_ahead: bool§heredoc_indentation: c_int§heredoc_indentation_uses_spaces: bool§script_org: *mut c_uchar§script_org_size: usize§script_filtered: *mut c_uchar§script_filtered_size: usize§input_filter: zend_encoding_filter§output_filter: zend_encoding_filter§script_encoding: *const zend_encoding§scanned_string_len: c_int§on_event: Option<unsafe extern "C" fn(event: zend_php_scanner_event, token: c_int, line: c_int, text: *const c_char, length: usize, context: *mut c_void)>§on_event_context: *mut c_void

Trait Implementations§

source§

impl Clone for _zend_php_scanner_globals

source§

fn clone(&self) -> _zend_php_scanner_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 Debug for _zend_php_scanner_globals

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for _zend_php_scanner_globals

source§

fn default() -> Self

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

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