pub struct ExecutionEvidence {
pub exit_code: Option<i32>,
pub started_at_ms: i64,
pub finished_at_ms: i64,
pub process: Option<ProcessIdentity>,
pub output_capture_complete: bool,
pub stragglers_killed: bool,
}Fields§
§exit_code: Option<i32>§started_at_ms: i64§finished_at_ms: i64§process: Option<ProcessIdentity>§output_capture_complete: bool§stragglers_killed: boolTrait Implementations§
Source§impl Clone for ExecutionEvidence
impl Clone for ExecutionEvidence
Source§fn clone(&self) -> ExecutionEvidence
fn clone(&self) -> ExecutionEvidence
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 moreimpl Copy for ExecutionEvidence
Source§impl Debug for ExecutionEvidence
impl Debug for ExecutionEvidence
impl Eq for ExecutionEvidence
Source§impl PartialEq for ExecutionEvidence
impl PartialEq for ExecutionEvidence
impl StructuralPartialEq for ExecutionEvidence
Auto Trait Implementations§
impl Freeze for ExecutionEvidence
impl RefUnwindSafe for ExecutionEvidence
impl Send for ExecutionEvidence
impl Sync for ExecutionEvidence
impl Unpin for ExecutionEvidence
impl UnsafeUnpin for ExecutionEvidence
impl UnwindSafe for ExecutionEvidence
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.