Struct phper_sys::_zend_php_scanner_globals[][src]

#[repr(C)]
pub struct _zend_php_scanner_globals {
Show 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 heredoc_scan_ahead: zend_bool, pub heredoc_indentation: c_int, pub heredoc_indentation_uses_spaces: zend_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, context: *mut c_void)>, pub on_event_context: *mut c_void,
}

Fields

yy_in: *mut zend_file_handleyy_out: *mut zend_file_handleyy_leng: c_uintyy_start: *mut c_ucharyy_text: *mut c_ucharyy_cursor: *mut c_ucharyy_marker: *mut c_ucharyy_limit: *mut c_ucharyy_state: c_intstate_stack: zend_stackheredoc_label_stack: zend_ptr_stackheredoc_scan_ahead: zend_boolheredoc_indentation: c_intheredoc_indentation_uses_spaces: zend_boolscript_org: *mut c_ucharscript_org_size: usizescript_filtered: *mut c_ucharscript_filtered_size: usizeinput_filter: zend_encoding_filteroutput_filter: zend_encoding_filterscript_encoding: *const zend_encodingscanned_string_len: c_inton_event: Option<unsafe extern "C" fn(event: zend_php_scanner_event, token: c_int, line: c_int, context: *mut c_void)>on_event_context: *mut c_void

Trait Implementations

impl Clone for _zend_php_scanner_globals[src]

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

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

Formats the value using the given formatter. Read more

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