[][src]Enum reso_dd::IncomeIncludes

pub enum IncomeIncludes {
    Laundry,
    Parking,
    Recreation,
    RentOnly,
    RVStorage,
    Storage,
    OpenEnumeration(String),
}

Variants

Laundry

"Laundry": The income amount includes income from laundry facilities.

Parking

"Parking": The income amount includes income from parking.

Recreation

"Recreation": The income amount includes income from charging for recreation facilities.

RentOnly

"Rent Only": The income amount includes income from only the rent charged to the tenants.

RVStorage

"RV Storage": The income amount includes income from charging for RV storage.

Storage

"Storage": The income amount includes income from charging for general storage.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for IncomeIncludes[src]

impl Debug for IncomeIncludes[src]

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

impl Eq for IncomeIncludes[src]

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

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

impl From<String> for IncomeIncludes[src]

impl PartialEq<IncomeIncludes> for IncomeIncludes[src]

impl ResoEnumeration for IncomeIncludes[src]

impl Serialize for IncomeIncludes[src]

impl StructuralEq for IncomeIncludes[src]

impl StructuralPartialEq for IncomeIncludes[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.