pub struct RemoteBoxSnapshot {
pub cli_current: bool,
pub cli_version: Option<String>,
pub cli_status: RemoteBoxCliStatus,
pub setup: Option<SetupStatusReport>,
pub doctor: Option<DoctorReport>,
}Expand description
Setup status + doctor from the box without uploading (TUI r).
Fields§
§cli_current: boolWhether box CLI long-version matches this PC.
cli_version: Option<String>Box CLI version line when a binary answered --version.
cli_status: RemoteBoxCliStatusOperator-facing box CLI status after the probe.
setup: Option<SetupStatusReport>Pipeline step rows from the box (only when cli_current).
doctor: Option<DoctorReport>Doctor JSON from the box (only when current).
Trait Implementations§
Source§impl Clone for RemoteBoxSnapshot
impl Clone for RemoteBoxSnapshot
Source§fn clone(&self) -> RemoteBoxSnapshot
fn clone(&self) -> RemoteBoxSnapshot
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 moreAuto Trait Implementations§
impl Freeze for RemoteBoxSnapshot
impl RefUnwindSafe for RemoteBoxSnapshot
impl Send for RemoteBoxSnapshot
impl Sync for RemoteBoxSnapshot
impl Unpin for RemoteBoxSnapshot
impl UnsafeUnpin for RemoteBoxSnapshot
impl UnwindSafe for RemoteBoxSnapshot
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