pub struct GraphvizVisitor<'a, 'b> { /* private fields */ }
Expand description
Formats plans for graphical display using the DOT
language. This
format can be visualized using software from
graphviz
Implementations§
Source§impl<'a, 'b> GraphvizVisitor<'a, 'b>
impl<'a, 'b> GraphvizVisitor<'a, 'b>
pub fn new(f: &'a mut Formatter<'b>) -> Self
Sourcepub fn set_with_schema(&mut self, with_schema: bool)
pub fn set_with_schema(&mut self, with_schema: bool)
Sets a flag which controls if the output schema is displayed
pub fn pre_visit_plan(&mut self, label: &str) -> Result
pub fn post_visit_plan(&mut self) -> Result
pub fn start_graph(&mut self) -> Result
pub fn end_graph(&mut self) -> Result
Trait Implementations§
Source§impl<'n, 'a, 'b> TreeNodeVisitor<'n> for GraphvizVisitor<'a, 'b>
impl<'n, 'a, 'b> TreeNodeVisitor<'n> for GraphvizVisitor<'a, 'b>
Source§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: &LogicalPlan) -> Result<TreeNodeRecursion>
fn f_up(&mut self, _plan: &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 GraphvizVisitor<'a, 'b>
impl<'a, 'b> !RefUnwindSafe for GraphvizVisitor<'a, 'b>
impl<'a, 'b> !Send for GraphvizVisitor<'a, 'b>
impl<'a, 'b> !Sync for GraphvizVisitor<'a, 'b>
impl<'a, 'b> Unpin for GraphvizVisitor<'a, 'b>
impl<'a, 'b> !UnwindSafe for GraphvizVisitor<'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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more