pub struct LogicalPlanner<'a> { /* private fields */ }Expand description
Logical planner that converts a parsed Query AST into a LogicalPlan tree.
Implementations§
Source§impl<'a> LogicalPlanner<'a>
impl<'a> LogicalPlanner<'a>
Sourcepub fn new(registry: &'a mut dyn LabelRegistry) -> Self
pub fn new(registry: &'a mut dyn LabelRegistry) -> Self
Create a new planner backed by the given label/type registry.
Auto Trait Implementations§
impl<'a> Freeze for LogicalPlanner<'a>
impl<'a> !RefUnwindSafe for LogicalPlanner<'a>
impl<'a> !Send for LogicalPlanner<'a>
impl<'a> !Sync for LogicalPlanner<'a>
impl<'a> Unpin for LogicalPlanner<'a>
impl<'a> UnsafeUnpin for LogicalPlanner<'a>
impl<'a> !UnwindSafe for LogicalPlanner<'a>
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