pub trait RenameAliasFn: Send + Sync {
    // Required method
    fn call(&self, name: &str) -> Result<String, PolarsError>;
}

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 Fwhere F: Fn(&str) -> Result<String, PolarsError> + Send + Sync,