Struct polars::prelude::ExprNameNameSpace  
pub struct ExprNameNameSpace(/* private fields */);Available on crate feature 
lazy only.Expand description
Specialized expressions for modifying the name of existing expressions.
Implementations§
§impl ExprNameNameSpace
 
impl ExprNameNameSpace
pub fn keep(self) -> Expr
pub fn keep(self) -> Expr
Keep the original root name
fn example(df: LazyFrame) -> LazyFrame {
    df.select([
// even thought the alias yields a different column name,
// `keep` will make sure that the original column name is used
        col("*").alias("foo").name().keep()
])
}pub fn map<F>(self, function: F) -> Expr
pub fn map<F>(self, function: F) -> Expr
Define an alias by mapping a function over the original root column name.
pub fn to_lowercase(self) -> Expr
pub fn to_lowercase(self) -> Expr
Update the root column name to use lowercase characters.
pub fn to_uppercase(self) -> Expr
pub fn to_uppercase(self) -> Expr
Update the root column name to use uppercase characters.
pub fn map_fields( self, function: Arc<dyn Fn(&str) -> SmartString<LazyCompact> + Send + Sync> ) -> Expr
Available on crate feature 
dtype-struct only.pub fn prefix_fields(self, prefix: &str) -> Expr
Available on crate feature 
dtype-struct only.pub fn suffix_fields(self, suffix: &str) -> Expr
Available on crate feature 
dtype-struct only.Auto Trait Implementations§
impl Freeze for ExprNameNameSpace
impl !RefUnwindSafe for ExprNameNameSpace
impl Send for ExprNameNameSpace
impl Sync for ExprNameNameSpace
impl Unpin for ExprNameNameSpace
impl !UnwindSafe for ExprNameNameSpace
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<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