pub struct MathParseReport {
pub green: GreenNode,
pub diagnostics: Vec<MathDiagnostic>,
}Expand description
The lossless CST plus any diagnostics gathered on the side-channel.
Fields§
§green: GreenNode§diagnostics: Vec<MathDiagnostic>Trait Implementations§
Source§impl Clone for MathParseReport
impl Clone for MathParseReport
Source§fn clone(&self) -> MathParseReport
fn clone(&self) -> MathParseReport
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 moreAuto Trait Implementations§
impl Freeze for MathParseReport
impl RefUnwindSafe for MathParseReport
impl Send for MathParseReport
impl Sync for MathParseReport
impl Unpin for MathParseReport
impl UnsafeUnpin for MathParseReport
impl UnwindSafe for MathParseReport
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