pub struct EncryptionResult {
pub ciphertext: Vec<u8>,
pub nonce: Vec<u8>,
pub salt: Vec<u8>,
}
Fields§
§ciphertext: Vec<u8>
§nonce: Vec<u8>
§salt: Vec<u8>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EncryptionResult
impl RefUnwindSafe for EncryptionResult
impl Send for EncryptionResult
impl Sync for EncryptionResult
impl Unpin for EncryptionResult
impl UnwindSafe for EncryptionResult
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