Struct amazon_sp_feeds::models::feed_document_encryption_details::FeedDocumentEncryptionDetails
source · [−]pub struct FeedDocumentEncryptionDetails {
pub standard: Standard,
pub initialization_vector: String,
pub key: String,
}Expand description
FeedDocumentEncryptionDetails : 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
sourceimpl Clone for FeedDocumentEncryptionDetails
impl Clone for FeedDocumentEncryptionDetails
sourcefn clone(&self) -> FeedDocumentEncryptionDetails
fn clone(&self) -> FeedDocumentEncryptionDetails
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for FeedDocumentEncryptionDetails
impl Debug for FeedDocumentEncryptionDetails
sourceimpl Default for FeedDocumentEncryptionDetails
impl Default for FeedDocumentEncryptionDetails
sourcefn default() -> FeedDocumentEncryptionDetails
fn default() -> FeedDocumentEncryptionDetails
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for FeedDocumentEncryptionDetails
impl<'de> Deserialize<'de> for FeedDocumentEncryptionDetails
sourcefn 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
sourceimpl PartialEq<FeedDocumentEncryptionDetails> for FeedDocumentEncryptionDetails
impl PartialEq<FeedDocumentEncryptionDetails> for FeedDocumentEncryptionDetails
sourcefn eq(&self, other: &FeedDocumentEncryptionDetails) -> bool
fn eq(&self, other: &FeedDocumentEncryptionDetails) -> bool
impl StructuralPartialEq for FeedDocumentEncryptionDetails
Auto Trait Implementations
impl RefUnwindSafe for FeedDocumentEncryptionDetails
impl Send for FeedDocumentEncryptionDetails
impl Sync for FeedDocumentEncryptionDetails
impl Unpin for FeedDocumentEncryptionDetails
impl UnwindSafe for FeedDocumentEncryptionDetails
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more