Struct php_all_sys::php54::_zend_internal_function[][src]

#[repr(C)]pub struct _zend_internal_function {
    pub type_: zend_uchar,
    pub function_name: *const c_char,
    pub scope: *mut zend_class_entry,
    pub fn_flags: zend_uint,
    pub prototype: *mut _zend_function,
    pub num_args: zend_uint,
    pub required_num_args: zend_uint,
    pub arg_info: *mut zend_arg_info,
    pub handler: Option<unsafe extern "C" fn(ht: c_int, return_value: *mut zval, return_value_ptr: *mut *mut zval, this_ptr: *mut zval, return_value_used: c_int)>,
    pub module: *mut _zend_module_entry,
}

Fields

type_: zend_ucharfunction_name: *const c_charscope: *mut zend_class_entryfn_flags: zend_uintprototype: *mut _zend_functionnum_args: zend_uintrequired_num_args: zend_uintarg_info: *mut zend_arg_infohandler: Option<unsafe extern "C" fn(ht: c_int, return_value: *mut zval, return_value_ptr: *mut *mut zval, this_ptr: *mut zval, return_value_used: c_int)>module: *mut _zend_module_entry

Trait Implementations

impl Clone for _zend_internal_function[src]

impl Copy for _zend_internal_function[src]

impl Debug for _zend_internal_function[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.