pub struct Checked {
pub tast: Tast,
pub types: Types,
pub diagnostics: Vec<Diagnostic>,
}Expand description
What one run of the checking produced.
Fields§
§tast: TastThe typed tree, which holds poisoned nodes where the source did not check.
types: TypesThe types, which the tree points into and which outlive it.
diagnostics: Vec<Diagnostic>What went wrong, in the order it was found.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Checked
impl RefUnwindSafe for Checked
impl Send for Checked
impl Sync for Checked
impl Unpin for Checked
impl UnsafeUnpin for Checked
impl UnwindSafe for Checked
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