pub type x509_crt_ext_cb_t = Option<unsafe extern "C" fn(p_ctx: *mut c_void, crt: *const x509_crt, oid: *const x509_buf, critical: c_int, p: *const c_uchar, end: *const c_uchar) -> c_int>;

Aliased Type§

enum x509_crt_ext_cb_t {
    None,
    Some(unsafe extern "C" fn(_: *mut c_void, _: *const x509_crt, _: *const asn1_buf, _: i32, _: *const u8, _: *const u8) -> i32),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: *mut c_void, _: *const x509_crt, _: *const asn1_buf, _: i32, _: *const u8, _: *const u8) -> i32)

Some value of type T.