(&self)
| 70 | } |
| 71 | |
| 72 | fn size_hint(&self) -> (usize, Option<usize>) { |
| 73 | let remaining_bits = self.end_offset - self.current_offset; |
| 74 | (remaining_bits, Some(remaining_bits)) |
| 75 | } |
| 76 | |
| 77 | fn count(self) -> usize |
| 78 | where |
no outgoing calls
no test coverage detected