pub struct ExplorationReport {
pub report_id: String,
pub model_route: Option<ModelRoute>,
pub project_map: ProjectMap,
pub graph_hints: Vec<GraphHint>,
pub verifier_recommendations: Vec<String>,
pub input_witnesses: Vec<String>,
pub deterministically_backed: bool,
}Expand description
A read-only exploration report (PSP-8 ExplorationReport).
Fields§
§report_id: String§model_route: Option<ModelRoute>§project_map: ProjectMap§graph_hints: Vec<GraphHint>§verifier_recommendations: Vec<String>§input_witnesses: Vec<String>Content hashes of the inputs this report observed, for provenance.
deterministically_backed: boolWhether the report is backed by deterministic tool output (not just a model summary). Advisory-only reports cannot act as a correctness barrier.
Implementations§
Source§impl ExplorationReport
impl ExplorationReport
pub fn new(project_map: ProjectMap) -> Self
Sourcepub fn is_barrier_eligible(&self) -> bool
pub fn is_barrier_eligible(&self) -> bool
Whether this report may be relied upon as a correctness barrier. A model summary alone may not; only deterministically-backed evidence may.
Trait Implementations§
Source§impl Clone for ExplorationReport
impl Clone for ExplorationReport
Source§fn clone(&self) -> ExplorationReport
fn clone(&self) -> ExplorationReport
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 ExplorationReport
impl Debug for ExplorationReport
Source§impl<'de> Deserialize<'de> for ExplorationReport
impl<'de> Deserialize<'de> for ExplorationReport
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 ExplorationReport
impl PartialEq for ExplorationReport
Source§fn eq(&self, other: &ExplorationReport) -> bool
fn eq(&self, other: &ExplorationReport) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ExplorationReport
impl Serialize for ExplorationReport
impl StructuralPartialEq for ExplorationReport
Auto Trait Implementations§
impl Freeze for ExplorationReport
impl RefUnwindSafe for ExplorationReport
impl Send for ExplorationReport
impl Sync for ExplorationReport
impl Unpin for ExplorationReport
impl UnsafeUnpin for ExplorationReport
impl UnwindSafe for ExplorationReport
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>,
impl<T> Scalar for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.