pub struct HistogramDiff<T> { /* private fields */ }Expand description
Histogram diff algorithm implementation.
Implementations§
Source§impl<T> HistogramDiff<T>
impl<T> HistogramDiff<T>
Sourcepub fn with_max_chain_length(self, max_chain_length: usize) -> Self
pub fn with_max_chain_length(self, max_chain_length: usize) -> Self
Sets a custom maximum chain length threshold.
Trait Implementations§
Source§impl<T> Default for HistogramDiff<T>
impl<T> Default for HistogramDiff<T>
Source§impl<T: PartialEq> DiffAlgorithm<T> for HistogramDiff<T>
impl<T: PartialEq> DiffAlgorithm<T> for HistogramDiff<T>
Auto Trait Implementations§
impl<T> !RefUnwindSafe for HistogramDiff<T>
impl<T> !Send for HistogramDiff<T>
impl<T> !Sync for HistogramDiff<T>
impl<T> !UnwindSafe for HistogramDiff<T>
impl<T> Freeze for HistogramDiff<T>
impl<T> Unpin for HistogramDiff<T>
impl<T> UnsafeUnpin for HistogramDiff<T>
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