1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[derive(Debug, Clone)]
/// Describes the index in a list of documents that a document was
/// previously found at (`from`) and the index that it can now be found at
pub struct LiveQueryMove {
    // TODO
}

impl LiveQueryMove {
    /// Create a new LiveQueryMove
    /// # panic
    /// This function is not yet implemented
    pub fn new(_left: impl Sized, _right: impl Sized) -> Self {
        todo!();
    }
}