pub fn read_bytes_before_many_const<const N: usize>( reader: &mut impl Read, delimiters: &[u8; N], capacity: usize, ) -> Result<Vec<u8>, Error>
Reading all bytes before the delimiters.