pub struct Parsed<'a> {
pub entries: Vec<Entry<'a>>,
pub skipped: Vec<usize>,
}Expand description
The result of a parse: the entries in file order plus the line numbers that were skipped.
Fields§
§entries: Vec<Entry<'a>>The pairs that parsed, in file order.
skipped: Vec<usize>Line numbers, counted from 1, that were neither a pair nor a comment or blank.
Trait Implementations§
impl<'a> Eq for Parsed<'a>
impl<'a> StructuralPartialEq for Parsed<'a>
Auto Trait Implementations§
impl<'a> Freeze for Parsed<'a>
impl<'a> RefUnwindSafe for Parsed<'a>
impl<'a> Send for Parsed<'a>
impl<'a> Sync for Parsed<'a>
impl<'a> Unpin for Parsed<'a>
impl<'a> UnsafeUnpin for Parsed<'a>
impl<'a> UnwindSafe for Parsed<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more