pub struct StepFailure {
pub step: &'static str,
pub detail: String,
}Expand description
One failed step: which, and the child’s last stderr line.
Fields§
§step: &'static strflake-update, current-system, or build.
detail: StringThe child’s last non-empty stderr line, or why it did not run.
Trait Implementations§
Source§impl Clone for StepFailure
impl Clone for StepFailure
Source§fn clone(&self) -> StepFailure
fn clone(&self) -> StepFailure
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 StepFailure
impl Debug for StepFailure
impl Eq for StepFailure
Source§impl PartialEq for StepFailure
impl PartialEq for StepFailure
impl StructuralPartialEq for StepFailure
Auto Trait Implementations§
impl Freeze for StepFailure
impl RefUnwindSafe for StepFailure
impl Send for StepFailure
impl Sync for StepFailure
impl Unpin for StepFailure
impl UnsafeUnpin for StepFailure
impl UnwindSafe for StepFailure
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