#[repr(C)]pub struct private_key_st {
pub version: c_int,
pub enc_algor: *mut X509_ALGOR,
pub enc_pkey: *mut ASN1_OCTET_STRING,
pub dec_pkey: *mut EVP_PKEY,
pub key_length: c_int,
pub key_data: *mut c_char,
pub key_free: c_int,
pub cipher: EVP_CIPHER_INFO,
}
Fields
version: c_int
enc_algor: *mut X509_ALGOR
enc_pkey: *mut ASN1_OCTET_STRING
dec_pkey: *mut EVP_PKEY
key_length: c_int
key_data: *mut c_char
key_free: c_int
cipher: EVP_CIPHER_INFO
Trait Implementations
sourceimpl Clone for private_key_st
impl Clone for private_key_st
sourcefn clone(&self) -> private_key_st
fn clone(&self) -> private_key_st
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for private_key_st
impl Debug for private_key_st
sourceimpl Default for private_key_st
impl Default for private_key_st
sourceimpl PartialEq<private_key_st> for private_key_st
impl PartialEq<private_key_st> for private_key_st
sourcefn eq(&self, other: &private_key_st) -> bool
fn eq(&self, other: &private_key_st) -> bool
impl Copy for private_key_st
impl Eq for private_key_st
impl StructuralEq for private_key_st
impl StructuralPartialEq for private_key_st
Auto Trait Implementations
impl RefUnwindSafe for private_key_st
impl !Send for private_key_st
impl !Sync for private_key_st
impl Unpin for private_key_st
impl UnwindSafe for private_key_st
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more