pub struct ParseReport {
pub document: Document,
pub diagnostics: Vec<Diagnostic>,
}Expand description
Completed owned document and any non-fatal parser findings.
Fields§
§document: Document§diagnostics: Vec<Diagnostic>Trait Implementations§
Source§impl Clone for ParseReport
impl Clone for ParseReport
Source§fn clone(&self) -> ParseReport
fn clone(&self) -> ParseReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ParseReport
impl Debug for ParseReport
impl Eq for ParseReport
Source§impl PartialEq for ParseReport
impl PartialEq for ParseReport
impl StructuralPartialEq for ParseReport
Auto Trait Implementations§
impl Freeze for ParseReport
impl RefUnwindSafe for ParseReport
impl Send for ParseReport
impl Sync for ParseReport
impl Unpin for ParseReport
impl UnsafeUnpin for ParseReport
impl UnwindSafe for ParseReport
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