pub struct ExportClassicKeyOutput {
pub certificate_pem: Option<String>,
pub key: Option<String>,
pub ssh: Option<String>,
pub wrapping_iv: Option<String>,
}Fields§
§certificate_pem: Option<String>§key: Option<String>§ssh: Option<String>§wrapping_iv: Option<String>Implementations§
Source§impl ExportClassicKeyOutput
impl ExportClassicKeyOutput
pub fn new() -> ExportClassicKeyOutput
Trait Implementations§
Source§impl Clone for ExportClassicKeyOutput
impl Clone for ExportClassicKeyOutput
Source§fn clone(&self) -> ExportClassicKeyOutput
fn clone(&self) -> ExportClassicKeyOutput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ExportClassicKeyOutput
impl Debug for ExportClassicKeyOutput
Source§impl Default for ExportClassicKeyOutput
impl Default for ExportClassicKeyOutput
Source§fn default() -> ExportClassicKeyOutput
fn default() -> ExportClassicKeyOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExportClassicKeyOutput
impl<'de> Deserialize<'de> for ExportClassicKeyOutput
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 PartialEq for ExportClassicKeyOutput
impl PartialEq for ExportClassicKeyOutput
Source§fn eq(&self, other: &ExportClassicKeyOutput) -> bool
fn eq(&self, other: &ExportClassicKeyOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ExportClassicKeyOutput
impl Serialize for ExportClassicKeyOutput
impl StructuralPartialEq for ExportClassicKeyOutput
Auto Trait Implementations§
impl Freeze for ExportClassicKeyOutput
impl RefUnwindSafe for ExportClassicKeyOutput
impl Send for ExportClassicKeyOutput
impl Sync for ExportClassicKeyOutput
impl Unpin for ExportClassicKeyOutput
impl UnsafeUnpin for ExportClassicKeyOutput
impl UnwindSafe for ExportClassicKeyOutput
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