(bytes: &[u8])
| 232 | impl DecodeME for u8 { |
| 233 | #[inline] |
| 234 | fn decode_from_me_bytes(bytes: &[u8]) -> Self { |
| 235 | let mut arr = [0; 1]; |
| 236 | arr.copy_from_slice(bytes); |
| 237 | Self::from_le_bytes(arr) |
| 238 | } |
| 239 | } |
| 240 | |
| 241 | impl_codec_for_primitives!(u16, 2); |
nothing calls this directly
no outgoing calls
no test coverage detected