#[non_exhaustive]pub struct StartKeyUsageOutput {
    pub key: Option<Key>,
    /* private fields */
}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: Option<Key>The KeyARN of the Amazon Web Services Payment Cryptography key activated for use.
Implementations§
source§impl StartKeyUsageOutput
 
impl StartKeyUsageOutput
sourcepub fn builder() -> StartKeyUsageOutputBuilder
 
pub fn builder() -> StartKeyUsageOutputBuilder
Creates a new builder-style object to manufacture StartKeyUsageOutput.
Trait Implementations§
source§impl Clone for StartKeyUsageOutput
 
impl Clone for StartKeyUsageOutput
source§fn clone(&self) -> StartKeyUsageOutput
 
fn clone(&self) -> StartKeyUsageOutput
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 StartKeyUsageOutput
 
impl Debug for StartKeyUsageOutput
source§impl PartialEq<StartKeyUsageOutput> for StartKeyUsageOutput
 
impl PartialEq<StartKeyUsageOutput> for StartKeyUsageOutput
source§fn eq(&self, other: &StartKeyUsageOutput) -> bool
 
fn eq(&self, other: &StartKeyUsageOutput) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl RequestId for StartKeyUsageOutput
 
impl RequestId for StartKeyUsageOutput
source§fn request_id(&self) -> Option<&str>
 
fn request_id(&self) -> Option<&str>
Returns the request ID, or 
None if the service could not be reached.impl StructuralPartialEq for StartKeyUsageOutput
Auto Trait Implementations§
impl RefUnwindSafe for StartKeyUsageOutput
impl Send for StartKeyUsageOutput
impl Sync for StartKeyUsageOutput
impl Unpin for StartKeyUsageOutput
impl UnwindSafe for StartKeyUsageOutput
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