☰
RenameAliasFn
Required Methods
call
Trait Implementations
Debug
Implementors
In polars_lazy::dsl
?
Trait
polars_lazy
::
dsl
::
RenameAliasFn
source
·
[
−
]
pub trait RenameAliasFn:
Send
+
Sync
{ 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
+ 'static
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
,