pub struct AeadKey<const N: usize>(/* private fields */);Expand description
An AEAD key with fixed size.
This is a low-level structure, usually you don’t need to use it directly unless you are implementing a higher-level abstraction.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<const N: usize> Freeze for AeadKey<N>
impl<const N: usize> RefUnwindSafe for AeadKey<N>
impl<const N: usize> Send for AeadKey<N>
impl<const N: usize> Sync for AeadKey<N>
impl<const N: usize> Unpin for AeadKey<N>
impl<const N: usize> UnwindSafe for AeadKey<N>
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