pub struct Parse {
pub green: GreenNode,
pub errors: Vec<SyntaxError>,
}Expand description
A parsed .bib file: the green tree plus any syntax errors gathered
alongside it. Errors never abort the parse.
Fields§
§green: GreenNode§errors: Vec<SyntaxError>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Parse
impl RefUnwindSafe for Parse
impl Send for Parse
impl Sync for Parse
impl Unpin for Parse
impl UnsafeUnpin for Parse
impl UnwindSafe for Parse
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