pub struct Lowered {
pub module: Module,
pub diagnostics: Vec<Diagnostic>,
}Expand description
What the walk produced.
Fields§
§module: ModuleThe module, which is complete even when something was reported: a construct that is not supported yet leaves the rest of the function around it intact.
diagnostics: Vec<Diagnostic>What was reported, in the order it was found.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Lowered
impl RefUnwindSafe for Lowered
impl Send for Lowered
impl Sync for Lowered
impl Unpin for Lowered
impl UnsafeUnpin for Lowered
impl UnwindSafe for Lowered
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