Type Alias CONF_METHOD

Source
pub type CONF_METHOD = conf_method_st;

Aliased Type§

#[repr(C)]
pub struct CONF_METHOD { pub name: *const i8, pub create: Option<unsafe extern "C" fn(*mut conf_method_st) -> *mut conf_st>, pub init: Option<unsafe extern "C" fn(*mut conf_st) -> i32>, pub destroy: Option<unsafe extern "C" fn(*mut conf_st) -> i32>, pub destroy_data: Option<unsafe extern "C" fn(*mut conf_st) -> i32>, pub load_bio: Option<unsafe extern "C" fn(*mut conf_st, *mut bio_st, *mut i64) -> i32>, pub dump: Option<unsafe extern "C" fn(*const conf_st, *mut bio_st) -> i32>, pub is_number: Option<unsafe extern "C" fn(*const conf_st, i8) -> i32>, pub to_int: Option<unsafe extern "C" fn(*const conf_st, i8) -> i32>, pub load: Option<unsafe extern "C" fn(*mut conf_st, *const i8, *mut i64) -> i32>, }

Fields§

§name: *const i8§create: Option<unsafe extern "C" fn(*mut conf_method_st) -> *mut conf_st>§init: Option<unsafe extern "C" fn(*mut conf_st) -> i32>§destroy: Option<unsafe extern "C" fn(*mut conf_st) -> i32>§destroy_data: Option<unsafe extern "C" fn(*mut conf_st) -> i32>§load_bio: Option<unsafe extern "C" fn(*mut conf_st, *mut bio_st, *mut i64) -> i32>§dump: Option<unsafe extern "C" fn(*const conf_st, *mut bio_st) -> i32>§is_number: Option<unsafe extern "C" fn(*const conf_st, i8) -> i32>§to_int: Option<unsafe extern "C" fn(*const conf_st, i8) -> i32>§load: Option<unsafe extern "C" fn(*mut conf_st, *const i8, *mut i64) -> i32>