#[non_exhaustive]pub enum WrappedKeyMaterial {
RsaAesWrappedKey(Bytes),
}Expand description
This field is legacy. Use the field wrapped_key instead.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
RsaAesWrappedKey(Bytes)
Optional. This field has the same meaning as wrapped_key. Prefer to use that field in new work. Either that field or this field (but not both) must be specified.
Trait Implementations§
Source§impl Clone for WrappedKeyMaterial
impl Clone for WrappedKeyMaterial
Source§fn clone(&self) -> WrappedKeyMaterial
fn clone(&self) -> WrappedKeyMaterial
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 WrappedKeyMaterial
impl Debug for WrappedKeyMaterial
Source§impl PartialEq for WrappedKeyMaterial
impl PartialEq for WrappedKeyMaterial
impl StructuralPartialEq for WrappedKeyMaterial
Auto Trait Implementations§
impl !Freeze for WrappedKeyMaterial
impl RefUnwindSafe for WrappedKeyMaterial
impl Send for WrappedKeyMaterial
impl Sync for WrappedKeyMaterial
impl Unpin for WrappedKeyMaterial
impl UnsafeUnpin for WrappedKeyMaterial
impl UnwindSafe for WrappedKeyMaterial
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