pub struct ApiOverviewSshKeyFingerprints {
pub sha256_rsa: Option<String>,
pub sha256_dsa: Option<String>,
pub sha256_ecdsa: Option<String>,
pub sha256_ed25519: Option<String>,
}
Fields§
§sha256_rsa: Option<String>
§sha256_dsa: Option<String>
§sha256_ecdsa: Option<String>
§sha256_ed25519: Option<String>
Implementations§
Trait Implementations§
Source§impl Clone for ApiOverviewSshKeyFingerprints
impl Clone for ApiOverviewSshKeyFingerprints
Source§fn clone(&self) -> ApiOverviewSshKeyFingerprints
fn clone(&self) -> ApiOverviewSshKeyFingerprints
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 Default for ApiOverviewSshKeyFingerprints
impl Default for ApiOverviewSshKeyFingerprints
Source§fn default() -> ApiOverviewSshKeyFingerprints
fn default() -> ApiOverviewSshKeyFingerprints
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApiOverviewSshKeyFingerprints
impl<'de> Deserialize<'de> for ApiOverviewSshKeyFingerprints
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 ApiOverviewSshKeyFingerprints
impl PartialEq for ApiOverviewSshKeyFingerprints
Source§fn eq(&self, other: &ApiOverviewSshKeyFingerprints) -> bool
fn eq(&self, other: &ApiOverviewSshKeyFingerprints) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ApiOverviewSshKeyFingerprints
Auto Trait Implementations§
impl Freeze for ApiOverviewSshKeyFingerprints
impl RefUnwindSafe for ApiOverviewSshKeyFingerprints
impl Send for ApiOverviewSshKeyFingerprints
impl Sync for ApiOverviewSshKeyFingerprints
impl Unpin for ApiOverviewSshKeyFingerprints
impl UnwindSafe for ApiOverviewSshKeyFingerprints
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