(&self)
| 160 | type Error = DecodingError; |
| 161 | |
| 162 | fn unexpected_eof(&self) -> Self::Error { |
| 163 | DecodingError::UnexpectedEof { |
| 164 | position: self.position, |
| 165 | } |
| 166 | } |
| 167 | |
| 168 | fn invalid_opcode(&self, code: u8) -> Self::Error { |
| 169 | DecodingError::InvalidOpcode { |
no test coverage detected