[][src]Enum reso_dd::RentIncludes

pub enum RentIncludes {
    AllUtilities,
    CableTV,
    Electricity,
    Gardener,
    Gas,
    Internet,
    Management,
    None,
    Other,
    SeeRemarks,
    Sewer,
    TrashCollection,
    Water,
    OpenEnumeration(String),
}

Variants

AllUtilities

"All Utilities": Rent for the dwelling includes all utilities.

CableTV

"Cable TV": Rent for the dwelling includes cable TV.

Electricity

"Electricity": Rent for the dwelling includes electricity.

Gardener

"Gardener": Rent for the dwelling includes gardener.

Gas

"Gas": Rent for the dwelling includes gas.

Internet

"Internet": Rent for the dwelling includes internet.

Management

"Management": Rent for the dwelling includes management.

None

"None": Rent for the dwelling does not include other potential costs such as utilities, management, services, etc.

Other

"Other": An item of what rent includes not in this list.

SeeRemarks

"See Remarks": See the listing's remarks for details about things included in the rent.

Sewer

"Sewer": Rent for the dwelling includes sewer.

TrashCollection

"Trash Collection": Rent for the dwelling includes trash collection.

Water

"Water": Rent for the dwelling includes water.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for RentIncludes[src]

impl Debug for RentIncludes[src]

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

impl Eq for RentIncludes[src]

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

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

impl From<String> for RentIncludes[src]

impl PartialEq<RentIncludes> for RentIncludes[src]

impl ResoEnumeration for RentIncludes[src]

impl Serialize for RentIncludes[src]

impl StructuralEq for RentIncludes[src]

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