pub struct DiffReport {
pub diff_version: String,
pub generated_at: String,
pub baseline: ProfileMetadata,
pub target: ProfileMetadata,
pub deltas: Deltas,
pub threshold_violations: Vec<ThresholdViolation>,
pub insights: Vec<AnalysisInsight>,
pub summary: DiffSummary,
}Expand description
Complete diff report comparing baseline and target profiles
Fields§
§diff_version: StringSchema version for the diff format
generated_at: StringTimestamp when diff was generated
baseline: ProfileMetadataMetadata from baseline profile
target: ProfileMetadataMetadata from target profile
deltas: DeltasCalculated deltas between profiles
threshold_violations: Vec<ThresholdViolation>List of threshold violations (if any)
insights: Vec<AnalysisInsight>Analysis insights (Option 4: Heuristics)
summary: DiffSummarySummary of diff results
Trait Implementations§
Source§impl Clone for DiffReport
impl Clone for DiffReport
Source§fn clone(&self) -> DiffReport
fn clone(&self) -> DiffReport
Returns a duplicate of the value. Read more
1.0.0 · 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 DiffReport
impl Debug for DiffReport
Source§impl<'de> Deserialize<'de> for DiffReport
impl<'de> Deserialize<'de> for DiffReport
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 DiffReport
impl RefUnwindSafe for DiffReport
impl Send for DiffReport
impl Sync for DiffReport
impl Unpin for DiffReport
impl UnsafeUnpin for DiffReport
impl UnwindSafe for DiffReport
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