1
2
3
4
5
6
7
8
#[non_exhaustive]
#[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 (`to`).
pub struct LiveQueryMove {
    pub from: usize,
    pub to: usize,
}