Type Alias zend_multibyte_functions

Source
pub type zend_multibyte_functions = _zend_multibyte_functions;

Aliased Type§

struct zend_multibyte_functions {
    pub provider_name: *const i8,
    pub encoding_fetcher: Option<unsafe extern "C" fn(*const i8) -> *const _zend_encoding>,
    pub encoding_name_getter: Option<unsafe extern "C" fn(*const _zend_encoding) -> *const i8>,
    pub lexer_compatibility_checker: Option<unsafe extern "C" fn(*const _zend_encoding) -> bool>,
    pub encoding_detector: Option<unsafe extern "C" fn(*const u8, usize, *mut *const _zend_encoding, usize) -> *const _zend_encoding>,
    pub encoding_converter: Option<unsafe extern "C" fn(*mut *mut u8, *mut usize, *const u8, usize, *const _zend_encoding, *const _zend_encoding) -> usize>,
    pub encoding_list_parser: Option<unsafe extern "C" fn(*const i8, usize, *mut *mut *const _zend_encoding, *mut usize, bool) -> i32>,
    pub internal_encoding_getter: Option<unsafe extern "C" fn() -> *const _zend_encoding>,
    pub internal_encoding_setter: Option<unsafe extern "C" fn(*const _zend_encoding) -> i32>,
}

Fields§

§provider_name: *const i8§encoding_fetcher: Option<unsafe extern "C" fn(*const i8) -> *const _zend_encoding>§encoding_name_getter: Option<unsafe extern "C" fn(*const _zend_encoding) -> *const i8>§lexer_compatibility_checker: Option<unsafe extern "C" fn(*const _zend_encoding) -> bool>§encoding_detector: Option<unsafe extern "C" fn(*const u8, usize, *mut *const _zend_encoding, usize) -> *const _zend_encoding>§encoding_converter: Option<unsafe extern "C" fn(*mut *mut u8, *mut usize, *const u8, usize, *const _zend_encoding, *const _zend_encoding) -> usize>§encoding_list_parser: Option<unsafe extern "C" fn(*const i8, usize, *mut *mut *const _zend_encoding, *mut usize, bool) -> i32>§internal_encoding_getter: Option<unsafe extern "C" fn() -> *const _zend_encoding>§internal_encoding_setter: Option<unsafe extern "C" fn(*const _zend_encoding) -> i32>