Struct datafusion_expr::logical_plan::display::IndentVisitor
source · pub struct IndentVisitor<'a, 'b> { /* private fields */ }
Expand description
Formats plans with a single line per node. For example:
Projection: id
Filter: state Eq Utf8("CO")
CsvScan: employee.csv projection=Some([0, 3])“;
Implementations§
Trait Implementations§
source§impl<'n, 'a, 'b> TreeNodeVisitor<'n> for IndentVisitor<'a, 'b>
impl<'n, 'a, 'b> TreeNodeVisitor<'n> for IndentVisitor<'a, 'b>
§type Node = LogicalPlan
type Node = LogicalPlan
The node type which is visitable.
source§fn f_down(&mut self, plan: &'n LogicalPlan) -> Result<TreeNodeRecursion>
fn f_down(&mut self, plan: &'n LogicalPlan) -> Result<TreeNodeRecursion>
Invoked while traversing down the tree, before any children are visited.
Default implementation continues the recursion.
source§fn f_up(&mut self, _plan: &'n LogicalPlan) -> Result<TreeNodeRecursion>
fn f_up(&mut self, _plan: &'n LogicalPlan) -> Result<TreeNodeRecursion>
Invoked while traversing up the tree after children are visited. Default
implementation continues the recursion.
Auto Trait Implementations§
impl<'a, 'b> Freeze for IndentVisitor<'a, 'b>
impl<'a, 'b> !RefUnwindSafe for IndentVisitor<'a, 'b>
impl<'a, 'b> !Send for IndentVisitor<'a, 'b>
impl<'a, 'b> !Sync for IndentVisitor<'a, 'b>
impl<'a, 'b> Unpin for IndentVisitor<'a, 'b>
impl<'a, 'b> !UnwindSafe for IndentVisitor<'a, 'b>
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