Struct amazon_sp_reports::models::report_document_encryption_details::ReportDocumentEncryptionDetails
source · [−]pub struct ReportDocumentEncryptionDetails {
pub standard: Standard,
pub initialization_vector: String,
pub key: String,
}Expand description
ReportDocumentEncryptionDetails : Encryption details required for decryption of a report document’s contents.
Fields
standard: StandardThe encryption standard required to decrypt the document contents.
initialization_vector: StringThe vector to decrypt the document contents using Cipher Block Chaining (CBC).
key: StringThe encryption key used to decrypt the document contents.
Implementations
Trait Implementations
sourceimpl Clone for ReportDocumentEncryptionDetails
impl Clone for ReportDocumentEncryptionDetails
sourcefn clone(&self) -> ReportDocumentEncryptionDetails
fn clone(&self) -> ReportDocumentEncryptionDetails
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 Default for ReportDocumentEncryptionDetails
impl Default for ReportDocumentEncryptionDetails
sourcefn default() -> ReportDocumentEncryptionDetails
fn default() -> ReportDocumentEncryptionDetails
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for ReportDocumentEncryptionDetails
impl<'de> Deserialize<'de> for ReportDocumentEncryptionDetails
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<ReportDocumentEncryptionDetails> for ReportDocumentEncryptionDetails
impl PartialEq<ReportDocumentEncryptionDetails> for ReportDocumentEncryptionDetails
sourcefn eq(&self, other: &ReportDocumentEncryptionDetails) -> bool
fn eq(&self, other: &ReportDocumentEncryptionDetails) -> bool
impl StructuralPartialEq for ReportDocumentEncryptionDetails
Auto Trait Implementations
impl RefUnwindSafe for ReportDocumentEncryptionDetails
impl Send for ReportDocumentEncryptionDetails
impl Sync for ReportDocumentEncryptionDetails
impl Unpin for ReportDocumentEncryptionDetails
impl UnwindSafe for ReportDocumentEncryptionDetails
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