#[repr(u32)]pub enum AeaCiphersuite {
HkdfSha256Hmac = 0,
HkdfSha256AesctrHmac = 1,
}Expand description
Wraps AEA ciphersuite identifiers.
Variants§
HkdfSha256Hmac = 0
Wraps the HkdfSha256Hmac variant of AeaCiphersuite.
HkdfSha256AesctrHmac = 1
Wraps the HkdfSha256AesctrHmac variant of AeaCiphersuite.
Trait Implementations§
Source§impl Clone for AeaCiphersuite
impl Clone for AeaCiphersuite
Source§fn clone(&self) -> AeaCiphersuite
fn clone(&self) -> AeaCiphersuite
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AeaCiphersuite
impl Debug for AeaCiphersuite
Source§impl Hash for AeaCiphersuite
impl Hash for AeaCiphersuite
Source§impl PartialEq for AeaCiphersuite
impl PartialEq for AeaCiphersuite
Source§fn eq(&self, other: &AeaCiphersuite) -> bool
fn eq(&self, other: &AeaCiphersuite) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for AeaCiphersuite
impl Eq for AeaCiphersuite
impl StructuralPartialEq for AeaCiphersuite
Auto Trait Implementations§
impl Freeze for AeaCiphersuite
impl RefUnwindSafe for AeaCiphersuite
impl Send for AeaCiphersuite
impl Sync for AeaCiphersuite
impl Unpin for AeaCiphersuite
impl UnsafeUnpin for AeaCiphersuite
impl UnwindSafe for AeaCiphersuite
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