pub struct BenchmarkHistoryEntry {
pub release_id: String,
pub generated_at: DateTime<Utc>,
pub metrics: RegressionMetrics,
pub coverage: CorpusCoverage,
pub deduplication: DeduplicationMetrics,
pub confidence_calibration: CalibrationSummary,
pub threshold_recommendation: ThresholdRecommendation,
pub family_metrics: Vec<AttackFamilyMetrics>,
}Fields§
§release_id: String§generated_at: DateTime<Utc>§metrics: RegressionMetrics§coverage: CorpusCoverage§deduplication: DeduplicationMetrics§confidence_calibration: CalibrationSummary§threshold_recommendation: ThresholdRecommendation§family_metrics: Vec<AttackFamilyMetrics>Trait Implementations§
Source§impl Clone for BenchmarkHistoryEntry
impl Clone for BenchmarkHistoryEntry
Source§fn clone(&self) -> BenchmarkHistoryEntry
fn clone(&self) -> BenchmarkHistoryEntry
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 BenchmarkHistoryEntry
impl Debug for BenchmarkHistoryEntry
Source§impl<'de> Deserialize<'de> for BenchmarkHistoryEntry
impl<'de> Deserialize<'de> for BenchmarkHistoryEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for BenchmarkHistoryEntry
impl RefUnwindSafe for BenchmarkHistoryEntry
impl Send for BenchmarkHistoryEntry
impl Sync for BenchmarkHistoryEntry
impl Unpin for BenchmarkHistoryEntry
impl UnsafeUnpin for BenchmarkHistoryEntry
impl UnwindSafe for BenchmarkHistoryEntry
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