#[repr(C)]pub struct OSSL_PARAM {
pub key: *const c_char,
pub data_type: c_uint,
pub data: *mut c_void,
pub data_size: size_t,
pub return_size: size_t,
}Fields§
§key: *const c_char§data_type: c_uint§data: *mut c_void§data_size: size_t§return_size: size_tNumber of bytes the most recent get-params call wrote into this
parameter’s data buffer. Only meaningful once
crate::OSSL_PARAM_modified has confirmed the parameter was
touched – before that, this field still holds the sentinel set
by the OSSL_PARAM_construct_* typed constructors.
Auto Trait Implementations§
impl Freeze for OSSL_PARAM
impl RefUnwindSafe for OSSL_PARAM
impl !Send for OSSL_PARAM
impl !Sync for OSSL_PARAM
impl Unpin for OSSL_PARAM
impl UnsafeUnpin for OSSL_PARAM
impl UnwindSafe for OSSL_PARAM
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