pub struct DebugTrace {
pub logical_plan: String,
pub physical_plan: String,
pub rows: usize,
pub duration_ms: u128,
pub logical_tree: DebugPlanNode,
pub physical_tree: DebugPlanNode,
}Fields§
§logical_plan: String§physical_plan: String§rows: usize§duration_ms: u128§logical_tree: DebugPlanNode§physical_tree: DebugPlanNodeTrait Implementations§
Source§impl Clone for DebugTrace
impl Clone for DebugTrace
Source§fn clone(&self) -> DebugTrace
fn clone(&self) -> DebugTrace
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 DebugTrace
impl Debug for DebugTrace
Auto Trait Implementations§
impl Freeze for DebugTrace
impl RefUnwindSafe for DebugTrace
impl Send for DebugTrace
impl Sync for DebugTrace
impl Unpin for DebugTrace
impl UnsafeUnpin for DebugTrace
impl UnwindSafe for DebugTrace
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