(
&self,
)
| 72 | } |
| 73 | |
| 74 | pub fn function_handles( |
| 75 | &self, |
| 76 | ) -> impl DoubleEndedIterator<Item = FunctionHandleView<'a, T>> + Send { |
| 77 | let module = self.module; |
| 78 | module |
| 79 | .function_handles() |
| 80 | .iter() |
| 81 | .map(move |function_handle| FunctionHandleView::new(module, function_handle)) |
| 82 | } |
| 83 | |
| 84 | pub fn field_handles(&self) -> impl DoubleEndedIterator<Item = FieldHandleView<'a, T>> + Send { |
| 85 | let module = self.module; |
no test coverage detected