Function tokio::io::util::read_until::read_until

source ·
pub(crate) fn read_until<'a, R>(
    reader: &'a mut R,
    delimiter: u8,
    buf: &'a mut Vec<u8>,
) -> ReadUntil<'a, R> 
where R: AsyncBufRead + ?Sized + Unpin,