(&self, key: Okey)
| 190 | } |
| 191 | |
| 192 | pub async fn fetch_topic_by_key(&self, key: Okey) -> Result<Option<git::Topic>> { |
| 193 | match self.object_loader.load_one(key).await? { |
| 194 | Some(object) => Ok(Some(object.try_into()?)), |
| 195 | None => Ok(None), |
| 196 | } |
| 197 | } |
| 198 | |
| 199 | pub async fn fetch_topics( |
| 200 | &self, |
no test coverage detected