pub struct PhysicalPlan {
pub root: PhysicalOp,
pub schema: Vec<Column>,
}
Expand description
物理プラン
Fields§
§root: PhysicalOp
§schema: Vec<Column>
Implementations§
Source§impl PhysicalPlan
impl PhysicalPlan
pub fn new(root: PhysicalOp, schema: Vec<Column>) -> Self
Trait Implementations§
Source§impl Clone for PhysicalPlan
impl Clone for PhysicalPlan
Source§fn clone(&self) -> PhysicalPlan
fn clone(&self) -> PhysicalPlan
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 PhysicalPlan
impl RefUnwindSafe for PhysicalPlan
impl Send for PhysicalPlan
impl Sync for PhysicalPlan
impl Unpin for PhysicalPlan
impl UnwindSafe for PhysicalPlan
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