pub struct VerdictOutput {
pub spec_version: String,
pub runner_version: String,
pub run_timestamp: String,
pub model: ModelMetadata,
pub conjuncts: ConjunctsOutput,
pub consistency_check: ConsistencyCheckOutput,
pub verdict: String,
pub verdict_reasons: Vec<String>,
pub known_gaps_acknowledged: Vec<String>,
}Expand description
The top-level verdict output JSON.
Contains the complete verdict result with evidence, consistency check results, and verdict reasons. Serializes to JSON matching ARCHITECTURE.md §7 schema.
Fields§
§spec_version: StringAGI/4 specification version (SemVer).
runner_version: StringRunner version (SemVer).
run_timestamp: StringISO 8601 timestamp of verdict computation.
model: ModelMetadataModel being evaluated.
conjuncts: ConjunctsOutputPer-conjunct evaluation results.
consistency_check: ConsistencyCheckOutputCross-conjunct consistency check result.
verdict: StringThe final verdict: “attested”, “not_attested”, or “insufficient_data”.
verdict_reasons: Vec<String>Reasons why verdict is not attested (if applicable).
known_gaps_acknowledged: Vec<String>Known gaps in the specification and measurements.
Trait Implementations§
Source§impl Clone for VerdictOutput
impl Clone for VerdictOutput
Source§fn clone(&self) -> VerdictOutput
fn clone(&self) -> VerdictOutput
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 VerdictOutput
impl Debug for VerdictOutput
Source§impl<'de> Deserialize<'de> for VerdictOutput
impl<'de> Deserialize<'de> for VerdictOutput
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 JsonSchema for VerdictOutput
impl JsonSchema for VerdictOutput
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 moreAuto Trait Implementations§
impl Freeze for VerdictOutput
impl RefUnwindSafe for VerdictOutput
impl Send for VerdictOutput
impl Sync for VerdictOutput
impl Unpin for VerdictOutput
impl UnsafeUnpin for VerdictOutput
impl UnwindSafe for VerdictOutput
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