pub struct PlanOperation {
pub op_type: String,
pub description: String,
pub estimated_rows: Option<u64>,
pub children: Vec<PlanOperation>,
}Expand description
An operation in a query execution plan.
Fields§
§op_type: StringOperation type (e.g., “NodeScan”, “Filter”, “Projection”)
description: StringHuman-readable description
estimated_rows: Option<u64>Estimated row count for this operation
children: Vec<PlanOperation>Child operations
Trait Implementations§
Source§impl Clone for PlanOperation
impl Clone for PlanOperation
Source§fn clone(&self) -> PlanOperation
fn clone(&self) -> PlanOperation
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PlanOperation
impl RefUnwindSafe for PlanOperation
impl Send for PlanOperation
impl Sync for PlanOperation
impl Unpin for PlanOperation
impl UnwindSafe for PlanOperation
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request