pub struct RemoteCliProbe {
pub path: Option<String>,
pub version: Option<String>,
pub current: bool,
pub status: RemoteBoxCliStatus,
}Expand description
Result of probing CLI binaries already on the box (no SCP).
Fields§
§path: Option<String>Absolute path of the binary that answered --version, when any.
version: Option<String>Normalized version line from the box, when any.
current: boolTrue when version matches this PC’s LONG_VERSION.
status: RemoteBoxCliStatusOperator-facing box CLI label after a probe (never “not yet refreshed”).
Trait Implementations§
Source§impl Clone for RemoteCliProbe
impl Clone for RemoteCliProbe
Source§fn clone(&self) -> RemoteCliProbe
fn clone(&self) -> RemoteCliProbe
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 RemoteCliProbe
impl Debug for RemoteCliProbe
impl Eq for RemoteCliProbe
Source§impl PartialEq for RemoteCliProbe
impl PartialEq for RemoteCliProbe
Source§fn eq(&self, other: &RemoteCliProbe) -> bool
fn eq(&self, other: &RemoteCliProbe) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RemoteCliProbe
Auto Trait Implementations§
impl Freeze for RemoteCliProbe
impl RefUnwindSafe for RemoteCliProbe
impl Send for RemoteCliProbe
impl Sync for RemoteCliProbe
impl Unpin for RemoteCliProbe
impl UnsafeUnpin for RemoteCliProbe
impl UnwindSafe for RemoteCliProbe
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