pub enum SignalCipherType {
AesCtrNoPadding,
AesCbcPkcs5,
}
Expand description
The type of AES cipher.
Variants§
Trait Implementations§
Source§impl Clone for SignalCipherType
impl Clone for SignalCipherType
Source§fn clone(&self) -> SignalCipherType
fn clone(&self) -> SignalCipherType
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 SignalCipherType
impl Debug for SignalCipherType
Source§impl TryFrom<i32> for SignalCipherType
impl TryFrom<i32> for SignalCipherType
impl Copy for SignalCipherType
Auto Trait Implementations§
impl Freeze for SignalCipherType
impl RefUnwindSafe for SignalCipherType
impl Send for SignalCipherType
impl Sync for SignalCipherType
impl Unpin for SignalCipherType
impl UnwindSafe for SignalCipherType
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