pub trait HarnessEnvelope {
// Required method
fn shape(&self, hits: &[ScoredMemory]) -> String;
}Expand description
Trait implemented by each per-harness adapter. The contract is
minimal: take a slice of typed ScoredMemory hits and return a
rendered string envelope shaped for the harness.
Required Methods§
fn shape(&self, hits: &[ScoredMemory]) -> String
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".