#[repr(C, packed(1))]pub struct BlockCipherParam {
pub iv: [BYTE; 32],
pub iv_len: ULONG,
pub padding_type: ULONG,
pub feed_bit_len: ULONG,
}
Expand description
The structure of BLOCKCIPHERPARAM
Fields§
§iv: [BYTE; 32]
§iv_len: ULONG
§padding_type: ULONG
§feed_bit_len: ULONG
Trait Implementations§
Source§impl Clone for BlockCipherParam
impl Clone for BlockCipherParam
Source§fn clone(&self) -> BlockCipherParam
fn clone(&self) -> BlockCipherParam
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 Debug for BlockCipherParam
impl Debug for BlockCipherParam
impl Copy for BlockCipherParam
Auto Trait Implementations§
impl Freeze for BlockCipherParam
impl RefUnwindSafe for BlockCipherParam
impl Send for BlockCipherParam
impl Sync for BlockCipherParam
impl Unpin for BlockCipherParam
impl UnwindSafe for BlockCipherParam
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