[][src]Enum reso_dd::FeeFrequency

pub enum FeeFrequency {
    Annually,
    BiMonthly,
    BiWeekly,
    Daily,
    Monthly,
    OneTime,
    Quarterly,
    Seasonal,
    SemiAnnually,
    SemiMonthly,
    Weekly,
    OpenEnumeration(String),
}

Variants

Annually

"Annually": Fee is paid or received once a year.

BiMonthly

"Bi-Monthly": Fee is paid or received every other month.

BiWeekly

"Bi-Weekly": Fee is paid or received every other week.

Daily

"Daily": Fee is paid or received daily.

Monthly

"Monthly": Fee is paid or received once a month.

OneTime

"One Time": Fee is paid or received once and is not reoccurring.

Quarterly

"Quarterly": Fee is paid or received every three months.

Seasonal

"Seasonal": Fee is paid or received seasonally.

SemiAnnually

"Semi-Annually": Fee is paid or received twice a year.

SemiMonthly

"Semi-Monthly": Fee is paid or received twice a month, generally on the 1st and 15th, but that may vary.

Weekly

"Weekly": Fee is paid or received weekly.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for FeeFrequency[src]

impl Debug for FeeFrequency[src]

impl<'de> Deserialize<'de> for FeeFrequency[src]

impl Eq for FeeFrequency[src]

impl<'_> From<&'_ str> for FeeFrequency[src]

impl<'a> From<&'a FeeFrequency> for &'a str[src]

impl From<String> for FeeFrequency[src]

impl PartialEq<FeeFrequency> for FeeFrequency[src]

impl ResoEnumeration for FeeFrequency[src]

impl Serialize for FeeFrequency[src]

impl StructuralEq for FeeFrequency[src]

impl StructuralPartialEq for FeeFrequency[src]

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[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.