(bytecode: &mut T)
| 264 | |
| 265 | impl Decode for u8 { |
| 266 | fn decode<T>(bytecode: &mut T) -> Result<Self, T::Error> |
| 267 | where |
| 268 | T: BytecodeStream, |
| 269 | { |
| 270 | bytecode.read::<1>().map(|a| a[0]) |
| 271 | } |
| 272 | } |
| 273 | |
| 274 | impl Decode for u16 { |
nothing calls this directly
no test coverage detected