pub struct StatusReport {
pub context: Worktree,
pub init_script: InitScriptStatus,
pub config: Option<PathBuf>,
}Expand description
Result summary for a treeboot status invocation.
Fields§
§context: WorktreeRuntime context discovered for the current worktree.
init_script: InitScriptStatusInit script discovery result.
config: Option<PathBuf>Selected config path, when one was requested or discovered.
Trait Implementations§
Source§impl Clone for StatusReport
impl Clone for StatusReport
Source§fn clone(&self) -> StatusReport
fn clone(&self) -> StatusReport
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 StatusReport
impl Debug for StatusReport
impl Eq for StatusReport
Source§impl From<&StatusReport> for StatusSnapshotReport
impl From<&StatusReport> for StatusSnapshotReport
Source§fn from(report: &StatusReport) -> Self
fn from(report: &StatusReport) -> Self
Converts to this type from the input type.
Source§impl PartialEq for StatusReport
impl PartialEq for StatusReport
Source§fn eq(&self, other: &StatusReport) -> bool
fn eq(&self, other: &StatusReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StatusReport
Auto Trait Implementations§
impl Freeze for StatusReport
impl RefUnwindSafe for StatusReport
impl Send for StatusReport
impl Sync for StatusReport
impl Unpin for StatusReport
impl UnsafeUnpin for StatusReport
impl UnwindSafe for StatusReport
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