Enum amfnengine::FunctionType[]

pub enum FunctionType {
    None,
    Abs,
    Am,
    Cashflow,
    DateDiff,
    DateFiscal,
    DateNew,
    DateNow,
    Default,
    Descriptor,
    Decimal,
    Format,
    FormatCurrency,
    FormatDate,
    FormatNumber,
    If,
    Integer,
    Len,
    Lowercase,
    Max,
    Mid,
    Min,
    Parse,
    Pr,
    Replace,
    Round,
    RoundFraction,
    Set,
    Trim,
    Type,
    Uppercase,
}

Function type enumeration.

Variants

None

No function.

Abs

Absolute value function.

Am

Am function.

Cashflow

Cashflow function.

DateDiff

Date difference function.

DateFiscal

Fiscal date function.

DateNew

New date function.

DateNow

Current date function.

Default

Default function.

Descriptor

Descriptor function.

Decimal

Decimal function.

Format

Format function.

FormatCurrency

Format currency function.

FormatDate

Format date function.

FormatNumber

Format number function.

If

If function.

Integer

Integer function.

Len

Length function.

Lowercase

Lowercase function.

Max

Max function.

Mid

Mid function.

Min

Min function.

Parse

Parse function.

Pr

Periodic rate (PR) function.

Replace

Replace function.

Round

Round function.

RoundFraction

RoundFraction function.

Set

Set function.

Trim

Trim function.

Type

Type function.

Uppercase

Uppercase function.

Trait Implementations

impl Clone for FunctionType

impl Copy for FunctionType

impl Debug for FunctionType

impl Eq for FunctionType

impl PartialEq<FunctionType> for FunctionType

impl StructuralEq for FunctionType

impl StructuralPartialEq for FunctionType

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.