pub struct ScalarUdf {
pub name: String,
pub num_args: i32,
pub deterministic: bool,
}Expand description
A scalar UDF definition.
Fields§
§name: StringFunction name.
num_args: i32Number of arguments.
deterministic: boolWhether deterministic.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ScalarUdf
impl RefUnwindSafe for ScalarUdf
impl Send for ScalarUdf
impl Sync for ScalarUdf
impl Unpin for ScalarUdf
impl UnwindSafe for ScalarUdf
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