Type Alias CONF_METHOD
Source pub type CONF_METHOD = conf_method_st;
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>,
}