pub struct DecryptResponse {
pub ciphertext_for_recipient: Option<Bytes>,
pub encryption_algorithm: Option<EncryptionAlgorithmSpec>,
pub key_id: Option<String>,
pub key_material_id: Option<String>,
pub plaintext: Option<Bytes>,
}Expand description
KMS DecryptResponse.
Fields§
§ciphertext_for_recipient: Option<Bytes>§encryption_algorithm: Option<EncryptionAlgorithmSpec>§key_id: Option<String>§key_material_id: Option<String>§plaintext: Option<Bytes>Trait Implementations§
Source§impl Clone for DecryptResponse
impl Clone for DecryptResponse
Source§fn clone(&self) -> DecryptResponse
fn clone(&self) -> DecryptResponse
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 DecryptResponse
impl Debug for DecryptResponse
Source§impl Default for DecryptResponse
impl Default for DecryptResponse
Source§fn default() -> DecryptResponse
fn default() -> DecryptResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DecryptResponse
impl<'de> Deserialize<'de> for DecryptResponse
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 DecryptResponse
impl RefUnwindSafe for DecryptResponse
impl Send for DecryptResponse
impl Sync for DecryptResponse
impl Unpin for DecryptResponse
impl UnsafeUnpin for DecryptResponse
impl UnwindSafe for DecryptResponse
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