pub struct CompileResult {
pub plan: ExecutionPlan,
pub diagnostics: Vec<Diagnostic>,
}Expand description
Compiled result: the plan plus any diagnostics.
Fields§
§plan: ExecutionPlanThe executable plan the runtime walks.
diagnostics: Vec<Diagnostic>What the compiler noticed along the way; never fatal (see
DiagnosticLevel).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CompileResult
impl RefUnwindSafe for CompileResult
impl Send for CompileResult
impl Sync for CompileResult
impl Unpin for CompileResult
impl UnsafeUnpin for CompileResult
impl UnwindSafe for CompileResult
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