Struct polars_plan::logical_plan::ALogicalPlanBuilder
source · pub struct ALogicalPlanBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> ALogicalPlanBuilder<'a>
impl<'a> ALogicalPlanBuilder<'a>
pub fn project(self, exprs: Vec<Node>, options: ProjectionOptions) -> Self
pub fn build(self) -> ALogicalPlan
pub fn group_by( self, keys: Vec<Node>, aggs: Vec<Node>, apply: Option<Arc<dyn DataFrameUdf>>, maintain_order: bool, options: Arc<GroupbyOptions> ) -> Self
pub fn join( self, other: Node, left_on: Vec<Node>, right_on: Vec<Node>, options: Arc<JoinOptions> ) -> Self
pub fn melt(self, args: Arc<MeltArgs>) -> Self
pub fn row_index(self, name: Arc<str>, offset: Option<IdxSize>) -> Self
Auto Trait Implementations§
impl<'a> Freeze for ALogicalPlanBuilder<'a>
impl<'a> !RefUnwindSafe for ALogicalPlanBuilder<'a>
impl<'a> Send for ALogicalPlanBuilder<'a>
impl<'a> Sync for ALogicalPlanBuilder<'a>
impl<'a> Unpin for ALogicalPlanBuilder<'a>
impl<'a> !UnwindSafe for ALogicalPlanBuilder<'a>
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