pub enum KeyEncryptionMechanism {
RsaesOaepSha256,
}Expand description
KMS KeyEncryptionMechanism enum.
Variants§
RsaesOaepSha256
Default variant.
Implementations§
Trait Implementations§
Source§impl Clone for KeyEncryptionMechanism
impl Clone for KeyEncryptionMechanism
Source§fn clone(&self) -> KeyEncryptionMechanism
fn clone(&self) -> KeyEncryptionMechanism
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 KeyEncryptionMechanism
impl Debug for KeyEncryptionMechanism
Source§impl Default for KeyEncryptionMechanism
impl Default for KeyEncryptionMechanism
Source§fn default() -> KeyEncryptionMechanism
fn default() -> KeyEncryptionMechanism
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for KeyEncryptionMechanism
impl<'de> Deserialize<'de> for KeyEncryptionMechanism
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 Display for KeyEncryptionMechanism
impl Display for KeyEncryptionMechanism
Source§impl From<&str> for KeyEncryptionMechanism
impl From<&str> for KeyEncryptionMechanism
Source§impl Hash for KeyEncryptionMechanism
impl Hash for KeyEncryptionMechanism
Source§impl PartialEq for KeyEncryptionMechanism
impl PartialEq for KeyEncryptionMechanism
Source§impl Serialize for KeyEncryptionMechanism
impl Serialize for KeyEncryptionMechanism
impl Eq for KeyEncryptionMechanism
impl StructuralPartialEq for KeyEncryptionMechanism
Auto Trait Implementations§
impl Freeze for KeyEncryptionMechanism
impl RefUnwindSafe for KeyEncryptionMechanism
impl Send for KeyEncryptionMechanism
impl Sync for KeyEncryptionMechanism
impl Unpin for KeyEncryptionMechanism
impl UnsafeUnpin for KeyEncryptionMechanism
impl UnwindSafe for KeyEncryptionMechanism
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