pub enum BuiltInFunctionType {
Show 42 variants
Sqrt,
Abs,
Log,
Ln,
Sin,
Cos,
ToInt,
ToBinary,
ToHex,
ToDouble,
ToBool,
ToUpper,
ToLower,
Capitalize,
Replace,
ReplaceAll,
Floor,
Round,
Ceil,
ToString,
Tan,
Println,
Print,
Eval,
TypeOf,
Match,
IsMatch,
Length,
Include,
Require,
IsError,
IsU8,
IsI8,
IsStruct,
IsBool,
IsInt,
MakeError,
IsDouble,
IsFunction,
IsArray,
ParseJson,
Jsonify,
}Variants§
Sqrt
Abs
Log
Ln
Sin
Cos
ToInt
ToBinary
ToHex
ToDouble
ToBool
ToUpper
ToLower
Capitalize
Replace
ReplaceAll
Floor
Round
Ceil
ToString
Tan
Println
Eval
TypeOf
Match
IsMatch
Length
Include
Require
IsError
IsU8
IsI8
IsStruct
IsBool
IsInt
MakeError
IsDouble
IsFunction
IsArray
ParseJson
Jsonify
Implementations§
Trait Implementations§
Source§impl Clone for BuiltInFunctionType
impl Clone for BuiltInFunctionType
Source§fn clone(&self) -> BuiltInFunctionType
fn clone(&self) -> BuiltInFunctionType
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 moreSource§impl Debug for BuiltInFunctionType
impl Debug for BuiltInFunctionType
Source§impl<'de> Deserialize<'de> for BuiltInFunctionType
impl<'de> Deserialize<'de> for BuiltInFunctionType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for BuiltInFunctionType
impl PartialEq for BuiltInFunctionType
Source§impl Serialize for BuiltInFunctionType
impl Serialize for BuiltInFunctionType
impl Copy for BuiltInFunctionType
impl Eq for BuiltInFunctionType
impl StructuralPartialEq for BuiltInFunctionType
Auto Trait Implementations§
impl Freeze for BuiltInFunctionType
impl RefUnwindSafe for BuiltInFunctionType
impl Send for BuiltInFunctionType
impl Sync for BuiltInFunctionType
impl Unpin for BuiltInFunctionType
impl UnwindSafe for BuiltInFunctionType
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