pub enum AExpr {
Show 19 variants Explode(Node), Alias(Node, Arc<str>), Column(Arc<str>), Literal(LiteralValue), BinaryExpr { left: Node, op: Operator, right: Node, }, Cast { expr: Node, data_type: DataType, strict: bool, }, Sort { expr: Node, options: SortOptions, }, Gather { expr: Node, idx: Node, returns_scalar: bool, }, SortBy { expr: Node, by: Vec<Node>, descending: Vec<bool>, }, Filter { input: Node, by: Node, }, Agg(AAggExpr), Ternary { predicate: Node, truthy: Node, falsy: Node, }, AnonymousFunction { input: Vec<Node>, function: SpecialEq<Arc<dyn SeriesUdf>>, output_type: GetOutput, options: FunctionOptions, }, Function { input: Vec<Node>, function: FunctionExpr, options: FunctionOptions, }, Window { function: Node, partition_by: Vec<Node>, options: WindowType, }, Wildcard, Slice { input: Node, offset: Node, length: Node, }, Len, Nth(i64),
}

Variants§

§

Explode(Node)

§

Alias(Node, Arc<str>)

§

Column(Arc<str>)

§

Literal(LiteralValue)

§

BinaryExpr

Fields

§left: Node
§right: Node
§

Cast

Fields

§expr: Node
§data_type: DataType
§strict: bool
§

Sort

Fields

§expr: Node
§options: SortOptions
§

Gather

Fields

§expr: Node
§idx: Node
§returns_scalar: bool
§

SortBy

Fields

§expr: Node
§by: Vec<Node>
§descending: Vec<bool>
§

Filter

Fields

§input: Node
§by: Node
§

Agg(AAggExpr)

§

Ternary

Fields

§predicate: Node
§truthy: Node
§falsy: Node
§

AnonymousFunction

Fields

§input: Vec<Node>
§function: SpecialEq<Arc<dyn SeriesUdf>>
§output_type: GetOutput
§

Function

Fields

§input: Vec<Node>

function arguments

§function: FunctionExpr

function to apply

§

Window

Fields

§function: Node
§partition_by: Vec<Node>
§options: WindowType
§

Wildcard

§

Slice

Fields

§input: Node
§offset: Node
§length: Node
§

Len

§

Nth(i64)

Implementations§

source§

impl AExpr

source

pub fn to_field( &self, schema: &Schema, ctxt: Context, arena: &Arena<AExpr> ) -> PolarsResult<Field>

Get Field result of the expression. The schema is the input data.

source§

impl AExpr

source

pub fn get_type( &self, schema: &Schema, ctxt: Context, arena: &Arena<AExpr> ) -> PolarsResult<DataType>

This should be a 1 on 1 copy of the get_type method of Expr until Expr is completely phased out.

Trait Implementations§

source§

impl Clone for AExpr

source§

fn clone(&self) -> AExpr

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for AExpr

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for AExpr

source§

fn default() -> AExpr

Returns the “default value” for a type. Read more
source§

impl Hash for AExpr

source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl UpperExp for AExpr

Hack UpperExpr trait to get a kind of formatting that doesn’t traverse the nodes. So we can format with {foo:E}

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter.

Auto Trait Implementations§

§

impl Freeze for AExpr

§

impl !RefUnwindSafe for AExpr

§

impl Send for AExpr

§

impl Sync for AExpr

§

impl Unpin for AExpr

§

impl !UnwindSafe for AExpr

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for T
where T: Clone,

source§

fn __clone_box(&self, _: Private) -> *mut ()

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> Ungil for T
where T: Send,