pub struct CheckStageResult {
pub stage: CheckStage,
pub command: String,
pub exit_code: Option<i32>,
pub stdout: String,
pub stderr: String,
}Expand description
Captured output from one completed validation stage.
Fields§
§stage: CheckStage§command: String§exit_code: Option<i32>§stdout: String§stderr: StringImplementations§
Trait Implementations§
Source§impl Clone for CheckStageResult
impl Clone for CheckStageResult
Source§fn clone(&self) -> CheckStageResult
fn clone(&self) -> CheckStageResult
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 CheckStageResult
impl Debug for CheckStageResult
impl Eq for CheckStageResult
Source§impl PartialEq for CheckStageResult
impl PartialEq for CheckStageResult
impl StructuralPartialEq for CheckStageResult
Auto Trait Implementations§
impl Freeze for CheckStageResult
impl RefUnwindSafe for CheckStageResult
impl Send for CheckStageResult
impl Sync for CheckStageResult
impl Unpin for CheckStageResult
impl UnsafeUnpin for CheckStageResult
impl UnwindSafe for CheckStageResult
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