pub enum EvidenceKind {
Tool,
Context,
Routing,
Process,
Runtime,
Git,
Human,
}Expand description
Evidence categories used by the completion gate.
Variants§
Tool
Evidence emitted by a built-in or MCP tool.
Context
Context retrieval receipt. Never machine-checkable task evidence by itself.
Routing
Runtime-owned model-routing plan and receipt evidence.
Process
Structured child-process result.
Runtime
Runtime state transition.
Git
Git diff/status observation.
Human
Human-authored observation.
Trait Implementations§
Source§impl Clone for EvidenceKind
impl Clone for EvidenceKind
Source§fn clone(&self) -> EvidenceKind
fn clone(&self) -> EvidenceKind
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 moreimpl Copy for EvidenceKind
Source§impl Debug for EvidenceKind
impl Debug for EvidenceKind
Source§impl<'de> Deserialize<'de> for EvidenceKind
impl<'de> Deserialize<'de> for EvidenceKind
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 EvidenceKind
Source§impl Ord for EvidenceKind
impl Ord for EvidenceKind
Source§fn cmp(&self, other: &EvidenceKind) -> Ordering
fn cmp(&self, other: &EvidenceKind) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for EvidenceKind
impl PartialEq for EvidenceKind
Source§impl PartialOrd for EvidenceKind
impl PartialOrd for EvidenceKind
Source§impl Serialize for EvidenceKind
impl Serialize for EvidenceKind
impl StructuralPartialEq for EvidenceKind
Auto Trait Implementations§
impl Freeze for EvidenceKind
impl RefUnwindSafe for EvidenceKind
impl Send for EvidenceKind
impl Sync for EvidenceKind
impl Unpin for EvidenceKind
impl UnsafeUnpin for EvidenceKind
impl UnwindSafe for EvidenceKind
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