pub struct KeyRegistrationStatus {
pub fingerprint: String,
pub status: RegistrationOutcome,
pub message: Option<String>,
}Expand description
Represents the status of registering a single key with the system SSH agent.
Fields§
§fingerprint: StringKey fingerprint.
status: RegistrationOutcomeRegistration outcome.
message: Option<String>Additional message, if any.
Trait Implementations§
Source§impl Clone for KeyRegistrationStatus
impl Clone for KeyRegistrationStatus
Source§fn clone(&self) -> KeyRegistrationStatus
fn clone(&self) -> KeyRegistrationStatus
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 Debug for KeyRegistrationStatus
impl Debug for KeyRegistrationStatus
Auto Trait Implementations§
impl Freeze for KeyRegistrationStatus
impl RefUnwindSafe for KeyRegistrationStatus
impl Send for KeyRegistrationStatus
impl Sync for KeyRegistrationStatus
impl Unpin for KeyRegistrationStatus
impl UnsafeUnpin for KeyRegistrationStatus
impl UnwindSafe for KeyRegistrationStatus
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