#[non_exhaustive]pub struct RestoreKeyInput {
pub key_identifier: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.key_identifier: Option<String>The KeyARN of the key to be restored within Amazon Web Services Payment Cryptography.
Implementations§
source§impl RestoreKeyInput
impl RestoreKeyInput
sourcepub fn key_identifier(&self) -> Option<&str>
pub fn key_identifier(&self) -> Option<&str>
The KeyARN of the key to be restored within Amazon Web Services Payment Cryptography.
source§impl RestoreKeyInput
impl RestoreKeyInput
sourcepub fn builder() -> RestoreKeyInputBuilder
pub fn builder() -> RestoreKeyInputBuilder
Creates a new builder-style object to manufacture RestoreKeyInput.
Trait Implementations§
source§impl Clone for RestoreKeyInput
impl Clone for RestoreKeyInput
source§fn clone(&self) -> RestoreKeyInput
fn clone(&self) -> RestoreKeyInput
Returns a copy 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 RestoreKeyInput
impl Debug for RestoreKeyInput
source§impl PartialEq for RestoreKeyInput
impl PartialEq for RestoreKeyInput
source§fn eq(&self, other: &RestoreKeyInput) -> bool
fn eq(&self, other: &RestoreKeyInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for RestoreKeyInput
Auto Trait Implementations§
impl Freeze for RestoreKeyInput
impl RefUnwindSafe for RestoreKeyInput
impl Send for RestoreKeyInput
impl Sync for RestoreKeyInput
impl Unpin for RestoreKeyInput
impl UnwindSafe for RestoreKeyInput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.