pub struct ProbeReport {
pub docker_cli_available: bool,
pub docker_bin: Option<String>,
pub inspect: Option<ProbeStep>,
pub tools: Vec<ProbeStep>,
pub commands: Vec<ProbeStep>,
}Expand description
Probe-specific evidence attached to a docker-probe subject.
Fields§
§docker_cli_available: bool§docker_bin: Option<String>§inspect: Option<ProbeStep>§tools: Vec<ProbeStep>§commands: Vec<ProbeStep>Implementations§
Source§impl ProbeReport
impl ProbeReport
Trait Implementations§
Source§impl Clone for ProbeReport
impl Clone for ProbeReport
Source§fn clone(&self) -> ProbeReport
fn clone(&self) -> ProbeReport
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 ProbeReport
impl Debug for ProbeReport
Source§impl Default for ProbeReport
impl Default for ProbeReport
Source§impl<'de> Deserialize<'de> for ProbeReport
impl<'de> Deserialize<'de> for ProbeReport
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
Source§impl PartialEq for ProbeReport
impl PartialEq for ProbeReport
Source§fn eq(&self, other: &ProbeReport) -> bool
fn eq(&self, other: &ProbeReport) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProbeReport
impl Serialize for ProbeReport
impl Eq for ProbeReport
impl StructuralPartialEq for ProbeReport
Auto Trait Implementations§
impl Freeze for ProbeReport
impl RefUnwindSafe for ProbeReport
impl Send for ProbeReport
impl Sync for ProbeReport
impl Unpin for ProbeReport
impl UnsafeUnpin for ProbeReport
impl UnwindSafe for ProbeReport
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.