[][src]Struct rusoto_forecast::SupplementaryFeature

pub struct SupplementaryFeature {
    pub name: String,
    pub value: String,
}

Describes a supplementary feature of a dataset group. This object is part of the InputDataConfig object.

The only supported feature is a holiday calendar. If you use the calendar, all data in the datasets should belong to the same country as the calendar. For the holiday calendar data, see the Jollyday web site.

Fields

name: String

The name of the feature. This must be "holiday".

value: String

One of the following 2 letter country codes:

  • "AU" - AUSTRALIA

  • "DE" - GERMANY

  • "JP" - JAPAN

  • "US" - UNITEDSTATES

  • "UK" - UNITEDKINGDOM

Trait Implementations

impl Clone for SupplementaryFeature[src]

impl Debug for SupplementaryFeature[src]

impl Default for SupplementaryFeature[src]

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

impl PartialEq<SupplementaryFeature> for SupplementaryFeature[src]

impl Serialize for SupplementaryFeature[src]

impl StructuralPartialEq for SupplementaryFeature[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: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

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.