| 10 | |
| 11 | #[derive(Debug, Serialize, Deserialize, Clone)] |
| 12 | pub struct InvertedIndexItem { |
| 13 | pub indices: Vec<usize>, |
| 14 | pub ids: Vec<u128>, |
| 15 | } |
| 16 | |
| 17 | impl Display for InvertedIndexItem { |
| 18 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
nothing calls this directly
no outgoing calls
no test coverage detected