similari 0.4.1

Vector similarity search engine library
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) {}
}