pub struct DistillReport {
pub transcript_path: Option<PathBuf>,
pub queue_drained: usize,
pub signals_detected: usize,
pub signals_redacted_dropped: usize,
pub signals_duplicate_dropped: usize,
pub signals_persisted: Vec<String>,
pub candidates_detected: usize,
pub candidates_redacted_dropped: usize,
pub candidates_duplicate_dropped: usize,
pub candidates_persisted: Vec<String>,
pub sampling_attempted: bool,
pub fallback_used: String,
}Fields§
§transcript_path: Option<PathBuf>§queue_drained: usize§signals_detected: usize§signals_redacted_dropped: usize§signals_duplicate_dropped: usize§signals_persisted: Vec<String>§candidates_detected: usize§candidates_redacted_dropped: usize§candidates_duplicate_dropped: usize§candidates_persisted: Vec<String>§sampling_attempted: boolTrue when the pipeline attempted MCP sampling reverse-call (R4b). Always false for R4a.
fallback_used: StringTier label that produced the candidates / accepted records.
"tier1_heuristic" for R4a; R4b may emit
"sampling+tier1_fallback" etc.
Trait Implementations§
Source§impl Clone for DistillReport
impl Clone for DistillReport
Source§fn clone(&self) -> DistillReport
fn clone(&self) -> DistillReport
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 DistillReport
impl Debug for DistillReport
Source§impl Default for DistillReport
impl Default for DistillReport
Source§fn default() -> DistillReport
fn default() -> DistillReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DistillReport
impl RefUnwindSafe for DistillReport
impl Send for DistillReport
impl Sync for DistillReport
impl Unpin for DistillReport
impl UnsafeUnpin for DistillReport
impl UnwindSafe for DistillReport
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