pub struct EncryptionDetails {
pub standard: Standard,
pub initialization_vector: String,
pub key: String,
}Expand description
EncryptionDetails : Encryption details for required client-side encryption and decryption of document contents.
Fields§
§standard: StandardThe encryption standard required to encrypt or decrypt the document contents.
initialization_vector: StringThe vector to encrypt or decrypt the document contents using Cipher Block Chaining (CBC).
key: StringThe encryption key used to encrypt or decrypt the document contents.
Implementations§
Trait Implementations§
Source§impl Clone for EncryptionDetails
impl Clone for EncryptionDetails
Source§fn clone(&self) -> EncryptionDetails
fn clone(&self) -> EncryptionDetails
Returns a duplicate of the value. Read more
1.0.0 · 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 EncryptionDetails
impl Debug for EncryptionDetails
Source§impl Default for EncryptionDetails
impl Default for EncryptionDetails
Source§fn default() -> EncryptionDetails
fn default() -> EncryptionDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EncryptionDetails
impl<'de> Deserialize<'de> for EncryptionDetails
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
Source§impl PartialEq for EncryptionDetails
impl PartialEq for EncryptionDetails
Source§impl Serialize for EncryptionDetails
impl Serialize for EncryptionDetails
impl StructuralPartialEq for EncryptionDetails
Auto Trait Implementations§
impl Freeze for EncryptionDetails
impl RefUnwindSafe for EncryptionDetails
impl Send for EncryptionDetails
impl Sync for EncryptionDetails
impl Unpin for EncryptionDetails
impl UnwindSafe for EncryptionDetails
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