| 422 | // used for log to disk |
| 423 | #[derive(Serialize, Deserialize, Clone)] |
| 424 | pub enum RQuery<K, Doc> { |
| 425 | Insert(K, Doc), |
| 426 | Remove(K), |
| 427 | } |
| 428 | |
| 429 | impl<K, Doc> RQuery<K, Doc> { |
| 430 |
nothing calls this directly
no outgoing calls
no test coverage detected