Trait polars::prelude::RenameAliasFn

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

    // Provided method
    fn try_serialize(&self, _buf: &mut Vec<u8>) -> Result<(), PolarsError> { ... }
}
Available on crate feature lazy only.

Required Methods§

Provided Methods§

fn try_serialize(&self, _buf: &mut Vec<u8>) -> Result<(), PolarsError>

Trait Implementations§

§

impl Debug for dyn RenameAliasFn

§

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

Formats the value using the given formatter. Read more

Implementors§