Function unpack_array_iter

Source
pub fn unpack_array_iter<I, V, C>(
    iter: I,
) -> Result<(usize, C), <V as Unpackable>::Error>
where I: IntoIterator<Item = u8>, V: Unpackable, C: FromIterator<V>,
Expand description

Unpacks an array from the iterator, returning a collectable type and the amount of read bytes.