pub struct EncryptionMetadata {
pub algorithm: EncryptionAlgorithm,
pub key_id: String,
pub nonce: Vec<u8>,
pub hmac: Vec<u8>,
}Fields§
§algorithm: EncryptionAlgorithm§key_id: String§nonce: Vec<u8>§hmac: Vec<u8>Auto Trait Implementations§
impl Freeze for EncryptionMetadata
impl RefUnwindSafe for EncryptionMetadata
impl Send for EncryptionMetadata
impl Sync for EncryptionMetadata
impl Unpin for EncryptionMetadata
impl UnwindSafe for EncryptionMetadata
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