pub struct ExportOnly;Expand description
Export-only “AEAD” marker (RFC 9180 §7.3, ID 0xFFFF).
Configurations parameterized over ExportOnly cannot encrypt or decrypt;
only the export methods are available, because ExportOnly does not
implement SealingAead.
Trait Implementations§
Source§impl Aead for ExportOnly
impl Aead for ExportOnly
Source§impl Clone for ExportOnly
impl Clone for ExportOnly
Source§fn clone(&self) -> ExportOnly
fn clone(&self) -> ExportOnly
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 ExportOnly
impl Debug for ExportOnly
Source§impl Default for ExportOnly
impl Default for ExportOnly
Source§fn default() -> ExportOnly
fn default() -> ExportOnly
Returns the “default value” for a type. Read more
impl Copy for ExportOnly
Auto Trait Implementations§
impl Freeze for ExportOnly
impl RefUnwindSafe for ExportOnly
impl Send for ExportOnly
impl Sync for ExportOnly
impl Unpin for ExportOnly
impl UnsafeUnpin for ExportOnly
impl UnwindSafe for ExportOnly
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