pub struct DciBenchmarkReport {
pub description: Option<String>,
pub tasks_loaded: usize,
pub strategies_compared: usize,
pub expected_strategies: Vec<String>,
pub strategy_summaries: Vec<DciStrategySummary>,
pub task_rows: Vec<DciTaskRow>,
pub memory_retrieval_gate: Option<MemoryRetrievalGate>,
pub warnings: Vec<String>,
}Fields§
§description: Option<String>§tasks_loaded: usize§strategies_compared: usize§expected_strategies: Vec<String>§strategy_summaries: Vec<DciStrategySummary>§task_rows: Vec<DciTaskRow>§memory_retrieval_gate: Option<MemoryRetrievalGate>§warnings: Vec<String>Trait Implementations§
Source§impl Clone for DciBenchmarkReport
impl Clone for DciBenchmarkReport
Source§fn clone(&self) -> DciBenchmarkReport
fn clone(&self) -> DciBenchmarkReport
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 DciBenchmarkReport
impl Debug for DciBenchmarkReport
Source§impl PartialEq for DciBenchmarkReport
impl PartialEq for DciBenchmarkReport
Source§impl Serialize for DciBenchmarkReport
impl Serialize for DciBenchmarkReport
impl StructuralPartialEq for DciBenchmarkReport
Auto Trait Implementations§
impl Freeze for DciBenchmarkReport
impl RefUnwindSafe for DciBenchmarkReport
impl Send for DciBenchmarkReport
impl Sync for DciBenchmarkReport
impl Unpin for DciBenchmarkReport
impl UnsafeUnpin for DciBenchmarkReport
impl UnwindSafe for DciBenchmarkReport
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