/// 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`).
#[deprecated(
since ="4.14.4",
note ="Will be removed in SDK 5.0. Use DQL queries instead")]#[non_exhaustive]#[derive(Debug, Clone)]pubstructLiveQueryMove{/// The previously-known index of the item
pubfrom:usize,
/// The newly-known index of the item
pubto:usize,
}