(self)
| 184 | type Ok = T; |
| 185 | |
| 186 | fn try_collect_reports<A>(self) -> Result<A, Report<[C]>> |
| 187 | where |
| 188 | A: FromIterator<Self::Ok>, |
| 189 | { |
| 190 | try_process_reports(self, None, |shunt| shunt.collect()) |
| 191 | } |
| 192 | |
| 193 | fn try_collect_reports_bounded<A>(self, bound: usize) -> Result<A, Report<[C]>> |
| 194 | where |