pub struct SshSurfaceProbe {
pub host: String,
pub status: String,
pub key_ok: bool,
}Expand description
SSH reachability / key auth.
Fields§
§host: StringHost string used for OpenSSH.
status: StringOperator label: ok, auth failed, unreachable, n/a.
key_ok: boolTrue when BatchMode key login works.
Trait Implementations§
Source§impl Clone for SshSurfaceProbe
impl Clone for SshSurfaceProbe
Source§fn clone(&self) -> SshSurfaceProbe
fn clone(&self) -> SshSurfaceProbe
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 SshSurfaceProbe
impl Debug for SshSurfaceProbe
Source§impl<'de> Deserialize<'de> for SshSurfaceProbe
impl<'de> Deserialize<'de> for SshSurfaceProbe
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 SshSurfaceProbe
Source§impl PartialEq for SshSurfaceProbe
impl PartialEq for SshSurfaceProbe
Source§fn eq(&self, other: &SshSurfaceProbe) -> bool
fn eq(&self, other: &SshSurfaceProbe) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SshSurfaceProbe
impl Serialize for SshSurfaceProbe
impl StructuralPartialEq for SshSurfaceProbe
Auto Trait Implementations§
impl Freeze for SshSurfaceProbe
impl RefUnwindSafe for SshSurfaceProbe
impl Send for SshSurfaceProbe
impl Sync for SshSurfaceProbe
impl Unpin for SshSurfaceProbe
impl UnsafeUnpin for SshSurfaceProbe
impl UnwindSafe for SshSurfaceProbe
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