pub type X509V3_EXT_METHOD = v3_ext_method;
Aliased Type§
struct X509V3_EXT_METHOD {Show 14 fields
pub ext_nid: i32,
pub ext_flags: i32,
pub it: *const ASN1_ITEM_st,
pub ext_new: Option<unsafe extern "C" fn() -> *mut c_void>,
pub ext_free: Option<unsafe extern "C" fn(_: *mut c_void)>,
pub d2i: Option<unsafe extern "C" fn(_: *mut c_void, _: *mut *const u8, _: i64) -> *mut c_void>,
pub i2d: Option<unsafe extern "C" fn(_: *mut c_void, _: *mut *mut u8) -> i32>,
pub i2s: Option<unsafe extern "C" fn(_: *const v3_ext_method, _: *mut c_void) -> *mut i8>,
pub s2i: Option<unsafe extern "C" fn(_: *const v3_ext_method, _: *const v3_ext_ctx, _: *const i8) -> *mut c_void>,
pub i2v: Option<unsafe extern "C" fn(_: *const v3_ext_method, _: *mut c_void, _: *mut stack_st_CONF_VALUE) -> *mut stack_st_CONF_VALUE>,
pub v2i: Option<unsafe extern "C" fn(_: *const v3_ext_method, _: *const v3_ext_ctx, _: *const stack_st_CONF_VALUE) -> *mut c_void>,
pub i2r: Option<unsafe extern "C" fn(_: *const v3_ext_method, _: *mut c_void, _: *mut bio_st, _: i32) -> i32>,
pub r2i: Option<unsafe extern "C" fn(_: *const v3_ext_method, _: *const v3_ext_ctx, _: *const i8) -> *mut c_void>,
pub usr_data: *mut c_void,
}
Fields§
§ext_nid: i32
§ext_flags: i32
§it: *const ASN1_ITEM_st
§ext_new: Option<unsafe extern "C" fn() -> *mut c_void>
§ext_free: Option<unsafe extern "C" fn(_: *mut c_void)>
§d2i: Option<unsafe extern "C" fn(_: *mut c_void, _: *mut *const u8, _: i64) -> *mut c_void>
§i2d: Option<unsafe extern "C" fn(_: *mut c_void, _: *mut *mut u8) -> i32>
§i2s: Option<unsafe extern "C" fn(_: *const v3_ext_method, _: *mut c_void) -> *mut i8>
§s2i: Option<unsafe extern "C" fn(_: *const v3_ext_method, _: *const v3_ext_ctx, _: *const i8) -> *mut c_void>
§i2v: Option<unsafe extern "C" fn(_: *const v3_ext_method, _: *mut c_void, _: *mut stack_st_CONF_VALUE) -> *mut stack_st_CONF_VALUE>
§v2i: Option<unsafe extern "C" fn(_: *const v3_ext_method, _: *const v3_ext_ctx, _: *const stack_st_CONF_VALUE) -> *mut c_void>
§i2r: Option<unsafe extern "C" fn(_: *const v3_ext_method, _: *mut c_void, _: *mut bio_st, _: i32) -> i32>
§r2i: Option<unsafe extern "C" fn(_: *const v3_ext_method, _: *const v3_ext_ctx, _: *const i8) -> *mut c_void>
§usr_data: *mut c_void
Trait Implementations
Source§impl Clone for v3_ext_method
impl Clone for v3_ext_method
Source§fn clone(&self) -> v3_ext_method
fn clone(&self) -> v3_ext_method
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 more