pub fn parse_ignore_errors(buf: &[u8]) -> impl Iterator<Item = Entry<'_>>
Expand description

Similar to parse(), but will skip all lines that didn’t parse correctly, silently squelching all errors.

Examples found in repository?
src/snapshot/mod.rs (line 20)
19
20
21
    pub fn from_bytes(buf: &[u8]) -> Self {
        Self::new(crate::parse_ignore_errors(buf))
    }