Struct polars_plan::logical_plan::expr_ir::ColumnNode
source · pub struct ColumnNode(/* private fields */);Expand description
A Node that is restricted to AExpr::Column
Trait Implementations§
source§impl Clone for ColumnNode
impl Clone for ColumnNode
source§fn clone(&self) -> ColumnNode
fn clone(&self) -> ColumnNode
Returns a copy 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 moresource§impl Debug for ColumnNode
impl Debug for ColumnNode
source§impl From<ColumnNode> for Node
impl From<ColumnNode> for Node
source§fn from(value: ColumnNode) -> Self
fn from(value: ColumnNode) -> Self
Converts to this type from the input type.
source§impl Hash for ColumnNode
impl Hash for ColumnNode
source§impl Ord for ColumnNode
impl Ord for ColumnNode
source§fn cmp(&self, other: &ColumnNode) -> Ordering
fn cmp(&self, other: &ColumnNode) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for ColumnNode
impl PartialEq for ColumnNode
source§fn eq(&self, other: &ColumnNode) -> bool
fn eq(&self, other: &ColumnNode) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd for ColumnNode
impl PartialOrd for ColumnNode
source§fn partial_cmp(&self, other: &ColumnNode) -> Option<Ordering>
fn partial_cmp(&self, other: &ColumnNode) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Copy for ColumnNode
impl Eq for ColumnNode
impl StructuralPartialEq for ColumnNode
Auto Trait Implementations§
impl Freeze for ColumnNode
impl RefUnwindSafe for ColumnNode
impl Send for ColumnNode
impl Sync for ColumnNode
impl Unpin for ColumnNode
impl UnwindSafe for ColumnNode
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<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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