Enum FunctionType
pub enum FunctionType {
Show 31 variants
None = 0,
Abs = 1,
Am = 2,
Cashflow = 3,
DateDiff = 4,
DateFiscal = 5,
DateNew = 6,
DateNow = 7,
Default = 8,
Descriptor = 9,
Decimal = 10,
Format = 11,
FormatCurrency = 12,
FormatDate = 13,
FormatNumber = 14,
If = 15,
Integer = 16,
Len = 17,
Lowercase = 18,
Max = 19,
Mid = 20,
Min = 21,
Parse = 22,
Pr = 23,
Replace = 24,
Round = 25,
RoundFraction = 26,
Set = 27,
Trim = 28,
Type = 29,
Uppercase = 30,
}
Expand description
Function type enumeration.
Variants§
None = 0
No function.
Abs = 1
Absolute value function.
Am = 2
Am function.
Cashflow = 3
Cashflow function.
DateDiff = 4
Date difference function.
DateFiscal = 5
Fiscal date function.
DateNew = 6
New date function.
DateNow = 7
Current date function.
Default = 8
Default function.
Descriptor = 9
Descriptor function.
Decimal = 10
Decimal function.
Format = 11
Format function.
FormatCurrency = 12
Format currency function.
FormatDate = 13
Format date function.
FormatNumber = 14
Format number function.
If = 15
If function.
Integer = 16
Integer function.
Len = 17
Length function.
Lowercase = 18
Lowercase function.
Max = 19
Max function.
Mid = 20
Mid function.
Min = 21
Min function.
Parse = 22
Parse function.
Pr = 23
Periodic rate (PR) function.
Replace = 24
Replace function.
Round = 25
Round function.
RoundFraction = 26
RoundFraction function.
Set = 27
Set function.
Trim = 28
Trim function.
Type = 29
Type function.
Uppercase = 30
Uppercase function.
Trait Implementations§
§impl Clone for FunctionType
impl Clone for FunctionType
§fn clone(&self) -> FunctionType
fn clone(&self) -> FunctionType
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 more§impl Debug for FunctionType
impl Debug for FunctionType
§impl PartialEq for FunctionType
impl PartialEq for FunctionType
impl Copy for FunctionType
impl Eq for FunctionType
impl StructuralPartialEq for FunctionType
Auto Trait Implementations§
impl Freeze for FunctionType
impl RefUnwindSafe for FunctionType
impl Send for FunctionType
impl Sync for FunctionType
impl Unpin for FunctionType
impl UnwindSafe for FunctionType
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