Struct php_all_sys::php54::_zend_extension[][src]

#[repr(C)]pub struct _zend_extension {
    pub name: *mut c_char,
    pub version: *mut c_char,
    pub author: *mut c_char,
    pub URL: *mut c_char,
    pub copyright: *mut c_char,
    pub startup: startup_func_t,
    pub shutdown: shutdown_func_t,
    pub activate: activate_func_t,
    pub deactivate: deactivate_func_t,
    pub message_handler: message_handler_func_t,
    pub op_array_handler: op_array_handler_func_t,
    pub statement_handler: statement_handler_func_t,
    pub fcall_begin_handler: fcall_begin_handler_func_t,
    pub fcall_end_handler: fcall_end_handler_func_t,
    pub op_array_ctor: op_array_ctor_func_t,
    pub op_array_dtor: op_array_dtor_func_t,
    pub api_no_check: Option<unsafe extern "C" fn(api_no: c_int) -> c_int>,
    pub build_id_check: Option<unsafe extern "C" fn(build_id: *const c_char) -> c_int>,
    pub reserved3: *mut c_void,
    pub reserved4: *mut c_void,
    pub reserved5: *mut c_void,
    pub reserved6: *mut c_void,
    pub reserved7: *mut c_void,
    pub reserved8: *mut c_void,
    pub handle: *mut c_void,
    pub resource_number: c_int,
}

Fields

name: *mut c_charversion: *mut c_charauthor: *mut c_charURL: *mut c_charcopyright: *mut c_charstartup: startup_func_tshutdown: shutdown_func_tactivate: activate_func_tdeactivate: deactivate_func_tmessage_handler: message_handler_func_top_array_handler: op_array_handler_func_tstatement_handler: statement_handler_func_tfcall_begin_handler: fcall_begin_handler_func_tfcall_end_handler: fcall_end_handler_func_top_array_ctor: op_array_ctor_func_top_array_dtor: op_array_dtor_func_tapi_no_check: Option<unsafe extern "C" fn(api_no: c_int) -> c_int>build_id_check: Option<unsafe extern "C" fn(build_id: *const c_char) -> c_int>reserved3: *mut c_voidreserved4: *mut c_voidreserved5: *mut c_voidreserved6: *mut c_voidreserved7: *mut c_voidreserved8: *mut c_voidhandle: *mut c_voidresource_number: c_int

Trait Implementations

impl Clone for _zend_extension[src]

impl Copy for _zend_extension[src]

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