pub enum CiphertextType {
Signal = 2,
PreKey = 3,
SenderKey = 4,
SenderKeyDistribution = 5,
}
Expand description
The type of ciphertext message.
Variants§
Signal = 2
PreKey = 3
SenderKey = 4
A sender key message.
SenderKeyDistribution = 5
A sender key distribution message.
Trait Implementations§
Source§impl Clone for CiphertextType
impl Clone for CiphertextType
Source§fn clone(&self) -> CiphertextType
fn clone(&self) -> CiphertextType
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 CiphertextType
impl Debug for CiphertextType
Source§impl PartialEq for CiphertextType
impl PartialEq for CiphertextType
impl Copy for CiphertextType
impl StructuralPartialEq for CiphertextType
Auto Trait Implementations§
impl Freeze for CiphertextType
impl RefUnwindSafe for CiphertextType
impl Send for CiphertextType
impl Sync for CiphertextType
impl Unpin for CiphertextType
impl UnwindSafe for CiphertextType
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