pub enum FunctionCategory {
String,
DateTime,
Array,
Type,
}Expand description
Categories of standard library functions
Variants§
String
String manipulation
DateTime
Date and time operations
Array
Array/collection operations
Type
Type checking and conversion
Trait Implementations§
Source§impl Clone for FunctionCategory
impl Clone for FunctionCategory
Source§fn clone(&self) -> FunctionCategory
fn clone(&self) -> FunctionCategory
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 FunctionCategory
impl Debug for FunctionCategory
Source§impl PartialEq for FunctionCategory
impl PartialEq for FunctionCategory
impl Copy for FunctionCategory
impl Eq for FunctionCategory
impl StructuralPartialEq for FunctionCategory
Auto Trait Implementations§
impl Freeze for FunctionCategory
impl RefUnwindSafe for FunctionCategory
impl Send for FunctionCategory
impl Sync for FunctionCategory
impl Unpin for FunctionCategory
impl UnwindSafe for FunctionCategory
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