pub struct StepStatusRow {
pub id: String,
pub title: String,
pub status: String,
pub step_version: u32,
pub destructive: bool,
pub needs_reboot_after: bool,
}Expand description
One pipeline step row in a setup status report.
Fields§
§id: StringStep id (s1, …).
title: StringHuman title from Step::title.
status: Stringpending / done / stale / failed.
step_version: u32Binary Step::step_version.
destructive: boolWhether apply is destructive.
needs_reboot_after: boolWhether a reboot is advised after this step.
Trait Implementations§
Source§impl Clone for StepStatusRow
impl Clone for StepStatusRow
Source§fn clone(&self) -> StepStatusRow
fn clone(&self) -> StepStatusRow
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 StepStatusRow
impl Debug for StepStatusRow
Source§impl<'de> Deserialize<'de> for StepStatusRow
impl<'de> Deserialize<'de> for StepStatusRow
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
Auto Trait Implementations§
impl Freeze for StepStatusRow
impl RefUnwindSafe for StepStatusRow
impl Send for StepStatusRow
impl Sync for StepStatusRow
impl Unpin for StepStatusRow
impl UnsafeUnpin for StepStatusRow
impl UnwindSafe for StepStatusRow
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