pub struct DownloadDefaultKeyPairResult {
pub private_key_base_64: Option<String>,
pub public_key_base_64: Option<String>,
}
Fields§
§private_key_base_64: Option<String>
A base64-encoded RSA private key.
public_key_base_64: Option<String>
A base64-encoded public key of the ssh-rsa
type.
Trait Implementations§
Source§impl Clone for DownloadDefaultKeyPairResult
impl Clone for DownloadDefaultKeyPairResult
Source§fn clone(&self) -> DownloadDefaultKeyPairResult
fn clone(&self) -> DownloadDefaultKeyPairResult
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 DownloadDefaultKeyPairResult
impl Debug for DownloadDefaultKeyPairResult
Source§impl Default for DownloadDefaultKeyPairResult
impl Default for DownloadDefaultKeyPairResult
Source§fn default() -> DownloadDefaultKeyPairResult
fn default() -> DownloadDefaultKeyPairResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DownloadDefaultKeyPairResult
impl<'de> Deserialize<'de> for DownloadDefaultKeyPairResult
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 DownloadDefaultKeyPairResult
impl PartialEq for DownloadDefaultKeyPairResult
Source§fn eq(&self, other: &DownloadDefaultKeyPairResult) -> bool
fn eq(&self, other: &DownloadDefaultKeyPairResult) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DownloadDefaultKeyPairResult
Auto Trait Implementations§
impl Freeze for DownloadDefaultKeyPairResult
impl RefUnwindSafe for DownloadDefaultKeyPairResult
impl Send for DownloadDefaultKeyPairResult
impl Sync for DownloadDefaultKeyPairResult
impl Unpin for DownloadDefaultKeyPairResult
impl UnwindSafe for DownloadDefaultKeyPairResult
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