pub trait IsNovel<T>: Serialize + DeserializeOwned + 'static + Debug where
    T: PrimInt + Default + Copy + 'static + Serialize + DeserializeOwned
{ fn is_novel(old: T, new: T) -> bool; }
Expand description

A IsNovel function is used to discriminate if a reduced value is considered novel.

Required methods

If a new value in the MapFeedback was found, this filter can decide if the result is considered novel or not.

Implementors