Trait openssl::x509::ExtensionType
source · pub unsafe trait ExtensionType {
type Output: ForeignType;
const NID: Nid;
}
Expand description
A type of X509 extension.
Safety
The value of NID and Output must match those in OpenSSL so that
Output::from_ptr_opt(*_get_ext_d2i(*, NID, ...))
is valid.