(&mut self, op: &DocumentOp)
| 31 | type Error = std::convert::Infallible; |
| 32 | |
| 33 | fn document(&mut self, op: &DocumentOp) -> Result<Response, Self::Error> { |
| 34 | Ok(self.core_loop.dispatch_document(self.task, op)) |
| 35 | } |
| 36 | |
| 37 | fn vector(&mut self, op: &VectorOp) -> Result<Response, Self::Error> { |
| 38 | Ok(self.core_loop.dispatch_vector(self.task, op)) |
nothing calls this directly
no test coverage detected