pub struct GraphDecisionReport {Show 18 fields
pub version: String,
pub dataset_path: String,
pub evidence_fingerprint: GraphEvidenceFingerprint,
pub embedding_profile: GraphDecisionEmbeddingProfile,
pub k: usize,
pub benefit_threshold: f64,
pub latency_budget_p95_ms: f64,
pub evaluated_channel: EvaluatedGraphChannel,
pub graph_edges_evaluated: bool,
pub graph_edges_retrieval_decision: GraphEdgesRetrievalDecision,
pub decision: GraphDecision,
pub decision_reason: String,
pub standard: GraphDecisionArmReport,
pub entity_bfs: GraphDecisionArmReport,
pub literal_graph: GraphDecisionArmReport,
pub deltas: GraphDecisionDeltas,
pub checks: GraphDecisionChecks,
pub notes: Vec<String>,
}Fields§
§version: String§dataset_path: String§evidence_fingerprint: GraphEvidenceFingerprint§embedding_profile: GraphDecisionEmbeddingProfile§k: usize§benefit_threshold: f64§latency_budget_p95_ms: f64§evaluated_channel: EvaluatedGraphChannel§graph_edges_evaluated: bool§graph_edges_retrieval_decision: GraphEdgesRetrievalDecision§decision: GraphDecision§decision_reason: String§standard: GraphDecisionArmReport§entity_bfs: GraphDecisionArmReport§literal_graph: GraphDecisionArmReport§deltas: GraphDecisionDeltas§checks: GraphDecisionChecks§notes: Vec<String>Trait Implementations§
Source§impl Clone for GraphDecisionReport
impl Clone for GraphDecisionReport
Source§fn clone(&self) -> GraphDecisionReport
fn clone(&self) -> GraphDecisionReport
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 GraphDecisionReport
impl Debug for GraphDecisionReport
Source§impl Display for GraphDecisionReport
impl Display for GraphDecisionReport
Auto Trait Implementations§
impl Freeze for GraphDecisionReport
impl RefUnwindSafe for GraphDecisionReport
impl Send for GraphDecisionReport
impl Sync for GraphDecisionReport
impl Unpin for GraphDecisionReport
impl UnsafeUnpin for GraphDecisionReport
impl UnwindSafe for GraphDecisionReport
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<A, B, T> HttpServerConnExec<A, B> for Twhere
B: Body,
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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> Read<Exclusive, BecauseExclusive> for Twhere
T: ?Sized,
Source§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
Source§fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
Fallible version of
ToCompactString::to_compact_string() Read moreSource§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a
CompactString. Read more