similari 0.18.6

Machine learning framework for building object trackers and similarity search engines
Documentation
1
2
3
4
5
6
7
8
9
10
pub trait ChangeNotifier: Default + Clone + Sync + Send + 'static {
    fn send(&mut self, id: u64);
}

#[derive(Default, Clone, Debug)]
pub struct NoopNotifier;

impl ChangeNotifier for NoopNotifier {
    fn send(&mut self, _id: u64) {}
}