(&mut self, input: &mut &'a [u8], length: usize)
| 69 | |
| 70 | impl<'a, T: Decode<'a>, const N: usize> View<'a> for ArrayDecoder<'a, T, N> { |
| 71 | fn populate(&mut self, input: &mut &'a [u8], length: usize) -> Result<()> { |
| 72 | let length = mul_length(length, N)?; |
| 73 | self.0.populate(input, length) |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | impl<'a, T: Decode<'a>, const N: usize> Decoder<'a, [T; N]> for ArrayDecoder<'a, T, N> { |
nothing calls this directly
no test coverage detected