pub struct DebugPlanNode {
pub op: String,
pub children: Vec<DebugPlanNode>,
}Fields§
§op: String§children: Vec<DebugPlanNode>Implementations§
Source§impl DebugPlanNode
impl DebugPlanNode
pub fn from_physical(plan: &PhysicalPlan) -> Self
pub fn from_logical(plan: &LogicalPlan) -> Self
Trait Implementations§
Source§impl Clone for DebugPlanNode
impl Clone for DebugPlanNode
Source§fn clone(&self) -> DebugPlanNode
fn clone(&self) -> DebugPlanNode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DebugPlanNode
impl Debug for DebugPlanNode
Auto Trait Implementations§
impl Freeze for DebugPlanNode
impl RefUnwindSafe for DebugPlanNode
impl Send for DebugPlanNode
impl Sync for DebugPlanNode
impl Unpin for DebugPlanNode
impl UnsafeUnpin for DebugPlanNode
impl UnwindSafe for DebugPlanNode
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