#[repr(C)]pub struct cipher_info_t {
pub type_: cipher_type_t,
pub mode: cipher_mode_t,
pub key_bitlen: c_uint,
pub name: *const c_char,
pub iv_size: c_uint,
pub flags: c_int,
pub block_size: c_uint,
pub base: *const cipher_base_t,
}Fields§
§type_: cipher_type_t§mode: cipher_mode_t§key_bitlen: c_uint§name: *const c_char§iv_size: c_uint§flags: c_int§block_size: c_uint§base: *const cipher_base_tTrait Implementations§
Source§impl Clone for cipher_info_t
impl Clone for cipher_info_t
Source§fn clone(&self) -> cipher_info_t
fn clone(&self) -> cipher_info_t
Returns a duplicate 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 Default for cipher_info_t
impl Default for cipher_info_t
impl Copy for cipher_info_t
Auto Trait Implementations§
impl Freeze for cipher_info_t
impl RefUnwindSafe for cipher_info_t
impl !Send for cipher_info_t
impl !Sync for cipher_info_t
impl Unpin for cipher_info_t
impl UnwindSafe for cipher_info_t
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