pub struct SshIdentityRecord {
pub label: String,
pub algorithm: String,
pub fingerprint: String,
}Expand description
Public metadata for one SSH identity found on the gateway host.
Fields§
§label: String§algorithm: String§fingerprint: StringTrait Implementations§
Source§impl Clone for SshIdentityRecord
impl Clone for SshIdentityRecord
Source§fn clone(&self) -> SshIdentityRecord
fn clone(&self) -> SshIdentityRecord
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 SshIdentityRecord
impl Debug for SshIdentityRecord
Source§impl<'de> Deserialize<'de> for SshIdentityRecord
impl<'de> Deserialize<'de> for SshIdentityRecord
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
impl Eq for SshIdentityRecord
Source§impl PartialEq for SshIdentityRecord
impl PartialEq for SshIdentityRecord
Source§impl Serialize for SshIdentityRecord
impl Serialize for SshIdentityRecord
impl StructuralPartialEq for SshIdentityRecord
Auto Trait Implementations§
impl Freeze for SshIdentityRecord
impl RefUnwindSafe for SshIdentityRecord
impl Send for SshIdentityRecord
impl Sync for SshIdentityRecord
impl Unpin for SshIdentityRecord
impl UnsafeUnpin for SshIdentityRecord
impl UnwindSafe for SshIdentityRecord
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