#[repr(C)]pub struct ossl_param_st {
pub key: *const i8,
pub data_type: u32,
pub data: *mut c_void,
pub data_size: usize,
pub return_size: usize,
}
Fields§
§key: *const i8
§data_type: u32
§data: *mut c_void
§data_size: usize
§return_size: usize
Trait Implementations§
Source§impl Clone for ossl_param_st
impl Clone for ossl_param_st
Source§fn clone(&self) -> ossl_param_st
fn clone(&self) -> ossl_param_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 ossl_param_st
impl Debug for ossl_param_st
impl Copy for ossl_param_st
Auto Trait Implementations§
impl Freeze for ossl_param_st
impl RefUnwindSafe for ossl_param_st
impl !Send for ossl_param_st
impl !Sync for ossl_param_st
impl Unpin for ossl_param_st
impl UnwindSafe for ossl_param_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