[][src]Enum reso_dd::LeaseTerm

pub enum LeaseTerm {
    _12Months,
    _24Months,
    _6Months,
    MonthToMonth,
    Negotiable,
    None,
    Other,
    RenewalOption,
    ShortTermLease,
    Weekly,
    OpenEnumeration(String),
}

Variants

_12Months

"12 Months": The length of the lease is 12 months.

_24Months

"24 Months": The length of the lease is 24 months.

_6Months

"6 Months": The length of the lease is 6 months.

MonthToMonth

"Month To Month": The length of the lease is month to month.

Negotiable

"Negotiable": The length of the lease is negotiable.

None

"None": There is no stated term to the lease.

Other

"Other": The term of the lease is something other than is available in this list.

RenewalOption

"Renewal Option": The lease has a renewal option.

ShortTermLease

"Short Term Lease": The lease is short term.

Weekly

"Weekly": The length of the lease is weekly.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for LeaseTerm[src]

impl Debug for LeaseTerm[src]

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

impl Eq for LeaseTerm[src]

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

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

impl From<String> for LeaseTerm[src]

impl PartialEq<LeaseTerm> for LeaseTerm[src]

impl ResoEnumeration for LeaseTerm[src]

impl Serialize for LeaseTerm[src]

impl StructuralEq for LeaseTerm[src]

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