pub fn parse(buf: &[u8]) -> Lines<'_>Notable traits for Lines<'a>impl<'a> Iterator for Lines<'a>    type Item = Result<Entry<'a>, Error>;
Expand description

Parse the given buf of bytes line by line into mapping Entries.

Errors may occur per line, but it’s up to the caller to stop iteration when one is encountered.