pub struct ProbeStep {
pub kind: ProbeStepKind,
pub command: String,
pub success: bool,
pub exit_code: Option<i32>,
pub elapsed_ms: u128,
pub stdout: Option<String>,
pub stderr: Option<String>,
pub spawn_error: Option<String>,
}Expand description
One step of probe evidence: the docker command that was invoked, its exit code, and excerpts of stdout/stderr.
Fields§
§kind: ProbeStepKind§command: String§success: bool§exit_code: Option<i32>§elapsed_ms: u128§stdout: Option<String>§stderr: Option<String>§spawn_error: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for ProbeStep
impl<'de> Deserialize<'de> for ProbeStep
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
impl Eq for ProbeStep
impl StructuralPartialEq for ProbeStep
Auto Trait Implementations§
impl Freeze for ProbeStep
impl RefUnwindSafe for ProbeStep
impl Send for ProbeStep
impl Sync for ProbeStep
impl Unpin for ProbeStep
impl UnsafeUnpin for ProbeStep
impl UnwindSafe for ProbeStep
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.