pub struct AESEncryptionOptions<'a> {
pub block_cipher_mode: &'a BlockCipherMode<'a>,
pub padding: &'a Padding,
}Fields§
§block_cipher_mode: &'a BlockCipherMode<'a>§padding: &'a PaddingImplementations§
Source§impl<'a> AESEncryptionOptions<'a>
impl<'a> AESEncryptionOptions<'a>
pub fn new( block_cipher_mode: &'a BlockCipherMode<'_>, padding: &'a Padding, ) -> Self
Trait Implementations§
Source§impl<'a> Debug for AESEncryptionOptions<'a>
impl<'a> Debug for AESEncryptionOptions<'a>
Source§impl Default for AESEncryptionOptions<'_>
impl Default for AESEncryptionOptions<'_>
Source§impl<'a> PartialEq for AESEncryptionOptions<'a>
impl<'a> PartialEq for AESEncryptionOptions<'a>
impl<'a> StructuralPartialEq for AESEncryptionOptions<'a>
Auto Trait Implementations§
impl<'a> Freeze for AESEncryptionOptions<'a>
impl<'a> RefUnwindSafe for AESEncryptionOptions<'a>
impl<'a> Send for AESEncryptionOptions<'a>
impl<'a> Sync for AESEncryptionOptions<'a>
impl<'a> Unpin for AESEncryptionOptions<'a>
impl<'a> UnwindSafe for AESEncryptionOptions<'a>
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