pub struct StoreProbeResponse {
pub run_id: String,
pub checks: Vec<StoreProbeCheckResult>,
}Expand description
What one store contract probe observed, check by check.
Fields§
§run_id: StringLabel the server minted for this run. It scopes the objects the run wrote, so it identifies the run in provider logs too.
checks: Vec<StoreProbeCheckResult>Every check the run performed, in the order it performed them. A failed check lives here rather than in an error: the probe answered the question, and the answer is that the store is wrong.
Trait Implementations§
Source§impl Clone for StoreProbeResponse
impl Clone for StoreProbeResponse
Source§fn clone(&self) -> StoreProbeResponse
fn clone(&self) -> StoreProbeResponse
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 StoreProbeResponse
impl Debug for StoreProbeResponse
Source§impl<'de> Deserialize<'de> for StoreProbeResponse
impl<'de> Deserialize<'de> for StoreProbeResponse
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 StoreProbeResponse
Source§impl PartialEq for StoreProbeResponse
impl PartialEq for StoreProbeResponse
Source§impl Serialize for StoreProbeResponse
impl Serialize for StoreProbeResponse
impl StructuralPartialEq for StoreProbeResponse
Auto Trait Implementations§
impl Freeze for StoreProbeResponse
impl RefUnwindSafe for StoreProbeResponse
impl Send for StoreProbeResponse
impl Sync for StoreProbeResponse
impl Unpin for StoreProbeResponse
impl UnsafeUnpin for StoreProbeResponse
impl UnwindSafe for StoreProbeResponse
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