pub struct VerifierFinding {
pub id: String,
pub summary: String,
pub status: String,
pub verifier_score: f32,
pub source_ids: Vec<String>,
pub source_refs: Vec<SourceRef>,
pub agent_id: Option<String>,
pub lane: Option<String>,
pub closure_reason: Option<String>,
}Fields§
§id: String§summary: String§status: String§verifier_score: f32§source_ids: Vec<String>§source_refs: Vec<SourceRef>§agent_id: Option<String>§lane: Option<String>§closure_reason: Option<String>Optional justification stamp explaining why a status:"passed" finding
is a bounded-audit / bounded-investigation closure rather than a
genuine green. When present and non-empty, the strict gate treats the
finding as explicitly closed with scope, so the string-hack prefix
(“AUDIT-SCOPE PASSED:” etc.) Prime used in Pass 1/2 becomes typed.
Trait Implementations§
Source§impl Clone for VerifierFinding
impl Clone for VerifierFinding
Source§fn clone(&self) -> VerifierFinding
fn clone(&self) -> VerifierFinding
Returns a duplicate of the value. Read more
1.0.0 · 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 VerifierFinding
impl Debug for VerifierFinding
Source§impl<'de> Deserialize<'de> for VerifierFinding
impl<'de> Deserialize<'de> for VerifierFinding
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 VerifierFinding
impl PartialEq for VerifierFinding
Source§impl Serialize for VerifierFinding
impl Serialize for VerifierFinding
impl StructuralPartialEq for VerifierFinding
Auto Trait Implementations§
impl Freeze for VerifierFinding
impl RefUnwindSafe for VerifierFinding
impl Send for VerifierFinding
impl Sync for VerifierFinding
impl Unpin for VerifierFinding
impl UnsafeUnpin for VerifierFinding
impl UnwindSafe for VerifierFinding
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