#[repr(C)]pub struct private_key_st {
pub version: i32,
pub enc_algor: *mut X509_algor_st,
pub enc_pkey: *mut asn1_string_st,
pub dec_pkey: *mut evp_pkey_st,
pub key_length: i32,
pub key_data: *mut i8,
pub key_free: i32,
pub cipher: evp_cipher_info_st,
}
Fields§
§version: i32
§enc_algor: *mut X509_algor_st
§enc_pkey: *mut asn1_string_st
§dec_pkey: *mut evp_pkey_st
§key_length: i32
§key_data: *mut i8
§key_free: i32
§cipher: evp_cipher_info_st
Trait Implementations§
Source§impl Clone for private_key_st
impl Clone for private_key_st
Source§fn clone(&self) -> private_key_st
fn clone(&self) -> private_key_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 private_key_st
impl Debug for private_key_st
impl Copy for private_key_st
Auto Trait Implementations§
impl Freeze for private_key_st
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§
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