pub fn unpack_array_borrowed<'a, V, C>(
buf: &'a [u8],
) -> Result<(usize, C), <V as UnpackableBorrowed<'a>>::Error>where
V: UnpackableBorrowed<'a>,
C: FromIterator<V>,Expand description
Unpacks an array from the buffer using the borrowed deserialization path.