pub struct EncryptMetadata {
pub algorithm: EncryptionCipher,
pub key_plain_text: String,
pub iv: String,
}Expand description
Encryption metadata
Fields§
§algorithm: EncryptionCipher§key_plain_text: String§iv: StringTrait Implementations§
Source§impl Clone for EncryptMetadata
impl Clone for EncryptMetadata
Source§fn clone(&self) -> EncryptMetadata
fn clone(&self) -> EncryptMetadata
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 EncryptMetadata
impl Debug for EncryptMetadata
Source§impl<'de> Deserialize<'de> for EncryptMetadata
impl<'de> Deserialize<'de> for EncryptMetadata
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for EncryptMetadata
impl RefUnwindSafe for EncryptMetadata
impl Send for EncryptMetadata
impl Sync for EncryptMetadata
impl Unpin for EncryptMetadata
impl UnsafeUnpin for EncryptMetadata
impl UnwindSafe for EncryptMetadata
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