pub struct EncryptionParameters {
pub key: String,
pub nonce: String,
}Expand description
EncryptionParameters is basically the key and nonce
Fields§
§key: String§nonce: StringAuto Trait Implementations§
impl Freeze for EncryptionParameters
impl RefUnwindSafe for EncryptionParameters
impl Send for EncryptionParameters
impl Sync for EncryptionParameters
impl Unpin for EncryptionParameters
impl UnwindSafe for EncryptionParameters
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