#[repr(C)]pub struct conf_method_st {
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>
Trait Implementations§
Source§impl Clone for conf_method_st
impl Clone for conf_method_st
Source§fn clone(&self) -> conf_method_st
fn clone(&self) -> conf_method_st
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for conf_method_st
impl Debug for conf_method_st
impl Copy for conf_method_st
Auto Trait Implementations§
impl Freeze for conf_method_st
impl RefUnwindSafe for conf_method_st
impl !Send for conf_method_st
impl !Sync for conf_method_st
impl Unpin for conf_method_st
impl UnwindSafe for conf_method_st
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more