pub enum ContentEncryptionAlgorithm {
Aes128Cbc,
Aes192Cbc,
Aes256Cbc,
}Expand description
The content encryption algorithm used to encrypt the content
Variants§
Aes128Cbc
AES 128 bit encryption in CBC mode
Aes192Cbc
AES 192 bit encryption in CBC mode
Aes256Cbc
AES 256 bit encryption in CBC mode
Auto Trait Implementations§
impl Freeze for ContentEncryptionAlgorithm
impl RefUnwindSafe for ContentEncryptionAlgorithm
impl Send for ContentEncryptionAlgorithm
impl Sync for ContentEncryptionAlgorithm
impl Unpin for ContentEncryptionAlgorithm
impl UnwindSafe for ContentEncryptionAlgorithm
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