pub struct FailureRecallHit {
pub id: Uuid,
pub source: String,
pub message: String,
pub tool_name: Option<String>,
pub source_namespace: Option<String>,
pub source_tool: Option<String>,
pub score: f32,
}Expand description
One failure match (newest-first order preserved from the store when possible).
Fields§
§id: UuidGraph node id.
source: String§message: String§tool_name: Option<String>§source_namespace: Option<String>Optional MCP-style namespace (e.g. ainl) when the host recorded structured provenance.
source_tool: Option<String>Optional fully-qualified tool name when the host recorded structured provenance.
score: f32Best-effort ranking score (1.0 today; room for rankers later).
Trait Implementations§
Source§impl Clone for FailureRecallHit
impl Clone for FailureRecallHit
Source§fn clone(&self) -> FailureRecallHit
fn clone(&self) -> FailureRecallHit
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 FailureRecallHit
impl Debug for FailureRecallHit
Source§impl PartialEq for FailureRecallHit
impl PartialEq for FailureRecallHit
Source§fn eq(&self, other: &FailureRecallHit) -> bool
fn eq(&self, other: &FailureRecallHit) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FailureRecallHit
Auto Trait Implementations§
impl Freeze for FailureRecallHit
impl RefUnwindSafe for FailureRecallHit
impl Send for FailureRecallHit
impl Sync for FailureRecallHit
impl Unpin for FailureRecallHit
impl UnsafeUnpin for FailureRecallHit
impl UnwindSafe for FailureRecallHit
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