pub struct PlanFragment {
pub fragment_id: FragmentId,
pub assignment: FragmentAssignment,
pub operators: Vec<FragmentOperator>,
pub estimated_rows: u64,
pub estimated_bytes: u64,
pub max_spill_bytes: u64,
}Expand description
One executable unit of a DistributedPlan.
Fields§
§fragment_id: FragmentIdPlan-local fragment identifier.
assignment: FragmentAssignmentWhere the fragment executes.
operators: Vec<FragmentOperator>Operators, in execution order (scans/sources first, sink last).
estimated_rows: u64Estimated output rows (spec section 12.10).
estimated_bytes: u64Estimated output bytes (spec section 12.10).
max_spill_bytes: u64Maximum spill allowance in bytes (spec section 12.10).
Trait Implementations§
Source§impl Clone for PlanFragment
impl Clone for PlanFragment
Source§fn clone(&self) -> PlanFragment
fn clone(&self) -> PlanFragment
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 PlanFragment
impl Debug for PlanFragment
Source§impl<'de> Deserialize<'de> for PlanFragment
impl<'de> Deserialize<'de> for PlanFragment
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PlanFragment
impl PartialEq for PlanFragment
Source§impl Serialize for PlanFragment
impl Serialize for PlanFragment
impl StructuralPartialEq for PlanFragment
Auto Trait Implementations§
impl Freeze for PlanFragment
impl RefUnwindSafe for PlanFragment
impl Send for PlanFragment
impl Sync for PlanFragment
impl Unpin for PlanFragment
impl UnsafeUnpin for PlanFragment
impl UnwindSafe for PlanFragment
Blanket Implementations§
impl<T> Allocation for T
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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