pub enum InternalFunction {
Show 32 variants
Len,
Contains,
Flatten,
Upper,
Lower,
Trim,
StartsWith,
EndsWith,
Matches,
Extract,
FuzzyMatch,
Split,
Abs,
Sum,
Avg,
Min,
Max,
Rand,
Median,
Mode,
Floor,
Ceil,
Round,
Trunc,
IsNumeric,
String,
Number,
Bool,
Type,
Keys,
Values,
Date,
}
Variants§
Len
Contains
Flatten
Upper
Lower
Trim
StartsWith
EndsWith
Matches
Extract
FuzzyMatch
Split
Abs
Sum
Avg
Min
Max
Rand
Median
Mode
Floor
Ceil
Round
Trunc
IsNumeric
String
Number
Bool
Type
Keys
Values
Date
Trait Implementations§
Source§impl Clone for InternalFunction
impl Clone for InternalFunction
Source§fn clone(&self) -> InternalFunction
fn clone(&self) -> InternalFunction
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for InternalFunction
impl Debug for InternalFunction
Source§impl Display for InternalFunction
impl Display for InternalFunction
Source§impl<'_derivative_strum> From<&'_derivative_strum InternalFunction> for &'static str
impl<'_derivative_strum> From<&'_derivative_strum InternalFunction> for &'static str
Source§fn from(x: &'_derivative_strum InternalFunction) -> &'static str
fn from(x: &'_derivative_strum InternalFunction) -> &'static str
Converts to this type from the input type.
Source§impl From<&InternalFunction> for Rc<dyn FunctionDefinition>
impl From<&InternalFunction> for Rc<dyn FunctionDefinition>
Source§fn from(value: &InternalFunction) -> Self
fn from(value: &InternalFunction) -> Self
Converts to this type from the input type.
Source§impl From<InternalFunction> for &'static str
impl From<InternalFunction> for &'static str
Source§fn from(x: InternalFunction) -> &'static str
fn from(x: InternalFunction) -> &'static str
Converts to this type from the input type.
Source§impl FromStr for InternalFunction
impl FromStr for InternalFunction
Source§impl Hash for InternalFunction
impl Hash for InternalFunction
Source§impl IntoEnumIterator for InternalFunction
impl IntoEnumIterator for InternalFunction
Source§impl PartialEq for InternalFunction
impl PartialEq for InternalFunction
Source§impl TryFrom<&str> for InternalFunction
impl TryFrom<&str> for InternalFunction
impl Copy for InternalFunction
impl Eq for InternalFunction
impl IsEnabled for InternalFunction
impl StructuralPartialEq for InternalFunction
Auto Trait Implementations§
impl Freeze for InternalFunction
impl RefUnwindSafe for InternalFunction
impl Send for InternalFunction
impl Sync for InternalFunction
impl Unpin for InternalFunction
impl UnwindSafe for InternalFunction
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