pub struct GateEvidenceDto {
pub subtask: String,
pub changed_symbol_count: usize,
pub footprint_declared: bool,
pub containment_violations: Vec<SymbolRefDto>,
pub unparsed_changed_files: Vec<String>,
pub semantic_conflicts: Vec<DuplicateDto>,
pub build_test: BuildTestDto,
pub policy_denied: Option<Vec<String>>,
}Expand description
The gate’s evidence — structured, so a consumer (or replan) can attribute a verdict without parsing prose.
Fields§
§subtask: String§changed_symbol_count: usize§footprint_declared: bool§containment_violations: Vec<SymbolRefDto>§unparsed_changed_files: Vec<String>§semantic_conflicts: Vec<DuplicateDto>§build_test: BuildTestDto§policy_denied: Option<Vec<String>>None = policy allowed; Some(reasons) = denied (reasons preserved,
symmetric with the verdict’s own reasons).
Trait Implementations§
Source§impl Clone for GateEvidenceDto
impl Clone for GateEvidenceDto
Source§impl Debug for GateEvidenceDto
impl Debug for GateEvidenceDto
Source§impl<'de> Deserialize<'de> for GateEvidenceDto
impl<'de> Deserialize<'de> for GateEvidenceDto
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 GateEvidenceDto
Source§impl From<&GateEvidence> for GateEvidenceDto
impl From<&GateEvidence> for GateEvidenceDto
Source§fn from(e: &GateEvidence) -> Self
fn from(e: &GateEvidence) -> Self
Converts to this type from the input type.
Source§impl PartialEq for GateEvidenceDto
impl PartialEq for GateEvidenceDto
Source§impl Serialize for GateEvidenceDto
impl Serialize for GateEvidenceDto
impl StructuralPartialEq for GateEvidenceDto
Auto Trait Implementations§
impl Freeze for GateEvidenceDto
impl RefUnwindSafe for GateEvidenceDto
impl Send for GateEvidenceDto
impl Sync for GateEvidenceDto
impl Unpin for GateEvidenceDto
impl UnsafeUnpin for GateEvidenceDto
impl UnwindSafe for GateEvidenceDto
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more