[][src]Enum fred_rs::series::observation::Frequency

pub enum Frequency {
    D,
    W,
    BW,
    M,
    Q,
    SA,
    A,
    WEF,
    WETH,
    WEW,
    WETU,
    WEM,
    WESU,
    WESA,
    BWEW,
    BWEM,
}

Options for data series frequency

The frequency cannot exceed the native frequency of the data series.

https://research.stlouisfed.org/docs/api/fred/series_observations.html#frequency

Variants

D

Daily (fastest)

W

Weekly

BW

Bi-Weekly

M

Monthly

Q

Quarterly

SA

Semi-Annualy

A

Annual (slowest)

WEF

Weekly, Ending Friday

WETH

Weekly, Ending Thursday

WEW

Weekly, Ending Wednesday

WETU

Weekly, Ending Tuesday

WEM

Weekly, Ending Monday

WESU

Weekly, Ending Sunday

WESA

Weekly, Ending Saturday

BWEW

Bi-Weekly, Ending Wednesday

BWEM

Bi-Weekly, Ending Monday

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, 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,