pub struct AeCiphertext {
pub nonce: Nonce,
pub ciphertext: Ciphertext,
}
Expand description
Authenticated encryption nonce and ciphertext
Fields
nonce: Nonce
ciphertext: Ciphertext
Implementations
sourceimpl AeCiphertext
impl AeCiphertext
Trait Implementations
sourceimpl Debug for AeCiphertext
impl Debug for AeCiphertext
sourceimpl Default for AeCiphertext
impl Default for AeCiphertext
sourcefn default() -> AeCiphertext
fn default() -> AeCiphertext
Returns the “default value” for a type. Read more
sourceimpl From<AeCiphertext> for AeCiphertext
impl From<AeCiphertext> for AeCiphertext
sourcefn from(ct: AeCiphertext) -> Self
fn from(ct: AeCiphertext) -> Self
Performs the conversion.
sourceimpl TryFrom<AeCiphertext> for AeCiphertext
impl TryFrom<AeCiphertext> for AeCiphertext
Auto Trait Implementations
impl RefUnwindSafe for AeCiphertext
impl Send for AeCiphertext
impl Sync for AeCiphertext
impl Unpin for AeCiphertext
impl UnwindSafe for AeCiphertext
Blanket Implementations
impl<T> AbiExample for T
impl<T> AbiExample for T
pub default fn example() -> T
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more