[][src]Struct phper_sys::_zend_ini_entry

#[repr(C)]
pub struct _zend_ini_entry {
    pub name: *mut zend_string,
    pub on_modify: Option<unsafe extern "C" fn(entry: *mut zend_ini_entry, new_value: *mut zend_string, mh_arg1: *mut c_void, mh_arg2: *mut c_void, mh_arg3: *mut c_void, stage: c_int) -> c_int>,
    pub mh_arg1: *mut c_void,
    pub mh_arg2: *mut c_void,
    pub mh_arg3: *mut c_void,
    pub value: *mut zend_string,
    pub orig_value: *mut zend_string,
    pub displayer: Option<unsafe extern "C" fn(ini_entry: *mut zend_ini_entry, type_: c_int)>,
    pub modifiable: c_int,
    pub orig_modifiable: c_int,
    pub modified: c_int,
    pub module_number: c_int,
}

Fields

name: *mut zend_stringon_modify: Option<unsafe extern "C" fn(entry: *mut zend_ini_entry, new_value: *mut zend_string, mh_arg1: *mut c_void, mh_arg2: *mut c_void, mh_arg3: *mut c_void, stage: c_int) -> c_int>mh_arg1: *mut c_voidmh_arg2: *mut c_voidmh_arg3: *mut c_voidvalue: *mut zend_stringorig_value: *mut zend_stringdisplayer: Option<unsafe extern "C" fn(ini_entry: *mut zend_ini_entry, type_: c_int)>modifiable: c_intorig_modifiable: c_intmodified: c_intmodule_number: c_int

Trait Implementations

impl Clone for _zend_ini_entry[src]

impl Copy for _zend_ini_entry[src]

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