pub struct ExecutionLineageReceipt {
pub case_id: String,
pub plan_id: String,
pub attempt_id: String,
pub target_key: String,
pub execution_context_ref: String,
pub consumed_artifact_refs: Vec<String>,
pub produced_artifact_refs: Vec<String>,
pub degradation_markers: Vec<String>,
pub outcome_summary: String,
}Expand description
Lineage receipt linking a verification case to its consumed and produced artifacts.
Fields§
§case_id: String§plan_id: String§attempt_id: String§target_key: String§execution_context_ref: String§consumed_artifact_refs: Vec<String>§produced_artifact_refs: Vec<String>§degradation_markers: Vec<String>§outcome_summary: StringTrait Implementations§
Source§impl Clone for ExecutionLineageReceipt
impl Clone for ExecutionLineageReceipt
Source§fn clone(&self) -> ExecutionLineageReceipt
fn clone(&self) -> ExecutionLineageReceipt
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 ExecutionLineageReceipt
impl Debug for ExecutionLineageReceipt
Source§impl<'de> Deserialize<'de> for ExecutionLineageReceipt
impl<'de> Deserialize<'de> for ExecutionLineageReceipt
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 ExecutionLineageReceipt
Source§impl JsonSchema for ExecutionLineageReceipt
impl JsonSchema for ExecutionLineageReceipt
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for ExecutionLineageReceipt
impl PartialEq for ExecutionLineageReceipt
Source§fn eq(&self, other: &ExecutionLineageReceipt) -> bool
fn eq(&self, other: &ExecutionLineageReceipt) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ExecutionLineageReceipt
impl Serialize for ExecutionLineageReceipt
impl StructuralPartialEq for ExecutionLineageReceipt
Auto Trait Implementations§
impl Freeze for ExecutionLineageReceipt
impl RefUnwindSafe for ExecutionLineageReceipt
impl Send for ExecutionLineageReceipt
impl Sync for ExecutionLineageReceipt
impl Unpin for ExecutionLineageReceipt
impl UnsafeUnpin for ExecutionLineageReceipt
impl UnwindSafe for ExecutionLineageReceipt
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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§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.