pub struct DriftAttribution {
pub total_magnitude: f32,
pub dimensions: Vec<DimensionContribution>,
}Expand description
Per-dimension drift attribution.
Fields§
§total_magnitude: f32Total L2 drift magnitude.
dimensions: Vec<DimensionContribution>Per-dimension: (dim_index, absolute_change, relative_contribution).
Trait Implementations§
Source§impl Clone for DriftAttribution
impl Clone for DriftAttribution
Source§fn clone(&self) -> DriftAttribution
fn clone(&self) -> DriftAttribution
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for DriftAttribution
impl RefUnwindSafe for DriftAttribution
impl Send for DriftAttribution
impl Sync for DriftAttribution
impl Unpin for DriftAttribution
impl UnwindSafe for DriftAttribution
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