Skip to main content

HistogramDiff

Struct HistogramDiff 

Source
pub struct HistogramDiff<T> { /* private fields */ }
Expand description

Histogram diff algorithm implementation.

Implementations§

Source§

impl<T> HistogramDiff<T>

Source

pub fn new() -> Self

Creates a new HistogramDiff with default max chain length (64).

Source

pub fn with_max_chain_length(self, max_chain_length: usize) -> Self

Sets a custom maximum chain length threshold.

Source

pub fn with_equalizer<F>(self, equalizer: F) -> Self
where F: Fn(&T, &T) -> bool + 'static,

Sets a custom element equality predicate.

Trait Implementations§

Source§

impl<T> Default for HistogramDiff<T>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<T: PartialEq> DiffAlgorithm<T> for HistogramDiff<T>

Source§

fn diff_with_listener( &self, source: &[T], target: &[T], listener: &mut dyn DiffAlgorithmListener, ) -> Vec<Change>

Source§

fn diff(&self, source: &[T], target: &[T]) -> Vec<Change>

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>
where Option<Box<dyn Fn(&T, &T) -> bool>>: Freeze,

§

impl<T> Unpin for HistogramDiff<T>
where Option<Box<dyn Fn(&T, &T) -> bool>>: Unpin,

§

impl<T> UnsafeUnpin for HistogramDiff<T>
where Option<Box<dyn Fn(&T, &T) -> bool>>: UnsafeUnpin,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.