(
&self,
link_ids: &[ExternalId],
take: usize,
_reviewed: Option<bool>,
)
| 143 | } |
| 144 | |
| 145 | pub async fn fetch_links( |
| 146 | &self, |
| 147 | link_ids: &[ExternalId], |
| 148 | take: usize, |
| 149 | _reviewed: Option<bool>, |
| 150 | ) -> Result<BTreeSet<git::Link>> { |
| 151 | self.fetch_objects(link_ids.to_owned(), take) |
| 152 | .await? |
| 153 | .into_iter() |
| 154 | .map(git::Link::try_from) |
| 155 | .collect::<Result<BTreeSet<git::Link>>>() |
| 156 | } |
| 157 | |
| 158 | pub async fn fetch_objects( |
| 159 | &self, |
nothing calls this directly
no test coverage detected