Struct php_all_sys::php54::_zend_ini_entry[][src]

#[repr(C)]pub struct _zend_ini_entry {
    pub module_number: c_int,
    pub modifiable: c_int,
    pub name: *mut c_char,
    pub name_length: uint,
    pub on_modify: Option<unsafe extern "C" fn(entry: *mut zend_ini_entry, new_value: *mut c_char, new_value_length: uint, 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 c_char,
    pub value_length: uint,
    pub orig_value: *mut c_char,
    pub orig_value_length: uint,
    pub orig_modifiable: c_int,
    pub modified: c_int,
    pub displayer: Option<unsafe extern "C" fn(ini_entry: *mut zend_ini_entry, type_: c_int)>,
}

Fields

module_number: c_intmodifiable: c_intname: *mut c_charname_length: uinton_modify: Option<unsafe extern "C" fn(entry: *mut zend_ini_entry, new_value: *mut c_char, new_value_length: uint, 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 c_charvalue_length: uintorig_value: *mut c_charorig_value_length: uintorig_modifiable: c_intmodified: c_intdisplayer: Option<unsafe extern "C" fn(ini_entry: *mut zend_ini_entry, type_: 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.