pub struct Probe {
pub id: String,
pub source: String,
pub sha256: String,
pub expect: String,
pub output_sha256: Option<String>,
pub diagnostic_contains: Option<String>,
}Expand description
One recorded probe in the embedded evidence record.
Fields§
§id: String§source: String§sha256: String§expect: String§output_sha256: Option<String>§diagnostic_contains: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Probe
impl<'de> Deserialize<'de> for Probe
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 Probe
impl StructuralPartialEq for Probe
Auto Trait Implementations§
impl Freeze for Probe
impl RefUnwindSafe for Probe
impl Send for Probe
impl Sync for Probe
impl Unpin for Probe
impl UnsafeUnpin for Probe
impl UnwindSafe for Probe
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