pub struct ValidationStageReport {
pub stage: String,
pub success: bool,
pub exit_code: Option<i32>,
pub duration_ms: u64,
pub stdout: String,
pub stderr: String,
}Fields§
§stage: String§success: bool§exit_code: Option<i32>§duration_ms: u64§stdout: String§stderr: StringTrait Implementations§
Source§impl Clone for ValidationStageReport
impl Clone for ValidationStageReport
Source§fn clone(&self) -> ValidationStageReport
fn clone(&self) -> ValidationStageReport
Returns a duplicate of the value. Read more
1.0.0 · 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 ValidationStageReport
impl Debug for ValidationStageReport
Source§impl<'de> Deserialize<'de> for ValidationStageReport
impl<'de> Deserialize<'de> for ValidationStageReport
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 ValidationStageReport
impl RefUnwindSafe for ValidationStageReport
impl Send for ValidationStageReport
impl Sync for ValidationStageReport
impl Unpin for ValidationStageReport
impl UnsafeUnpin for ValidationStageReport
impl UnwindSafe for ValidationStageReport
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