Trait polars::prelude::RenameAliasFn

source ·
pub trait RenameAliasFn: Send + Sync {
    // Required method
    fn call(&self, name: &str) -> Result<String, PolarsError>;
}
Available on crate feature lazy only.

Required Methods§

source

fn call(&self, name: &str) -> Result<String, PolarsError>

Trait Implementations§

source§

impl Debug for dyn RenameAliasFn

source§

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

Formats the value using the given formatter. Read more

Implementors§

source§

impl<F> RenameAliasFn for F
where F: Fn(&str) -> Result<String, PolarsError> + Send + Sync,