(&self, collection: &str, doc: Document)
| 134 | } |
| 135 | |
| 136 | async fn document_put(&self, collection: &str, doc: Document) -> NodeDbResult<()> { |
| 137 | self.document_put_impl(collection, doc).await |
| 138 | } |
| 139 | |
| 140 | async fn document_delete(&self, collection: &str, id: &str) -> NodeDbResult<()> { |
| 141 | self.document_delete_impl(collection, id).await |
nothing calls this directly
no test coverage detected