pub struct AggregateUdf {
pub name: String,
pub num_args: i32,
}Expand description
An aggregate UDF definition.
Fields§
§name: StringFunction name.
num_args: i32Number of arguments.
Implementations§
Trait Implementations§
Source§impl Clone for AggregateUdf
impl Clone for AggregateUdf
Source§fn clone(&self) -> AggregateUdf
fn clone(&self) -> AggregateUdf
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for AggregateUdf
impl RefUnwindSafe for AggregateUdf
impl Send for AggregateUdf
impl Sync for AggregateUdf
impl Unpin for AggregateUdf
impl UnwindSafe for AggregateUdf
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