[][src]Enum reso_dd::ExistingLeaseType

pub enum ExistingLeaseType {
    AbsoluteNet,
    CPIAdjustment,
    EscalationClause,
    Gross,
    GroundLease,
    Net,
    NN,
    NNN,
    Oral,
    OpenEnumeration(String),
}

Variants

AbsoluteNet

"Absolute Net": Also known as a Bondable Lease, the tenant carries every risk in addition to the costs of a NNN Lease.

CPIAdjustment

"CPI Adjustment": An escalation clause/provision in a lease to adjust the amount paid by the tenant (lessee) where the adjustment will follow the Consumer Price Index (CPI).

EscalationClause

"Escalation Clause": A clause or provision in a lease document that set a formula for how rent will increase over time.

Gross

"Gross": A lease agreement where the owner (lessor) pays all property changes normal to ownership. The opposite to net leases where the tenant (lessee) may pay taxes, insurance, maintenance and even for damages that were not caused by the tenant.

GroundLease

"Ground Lease": Typically a long term lease of land where the tenant (lessee) has the right to develop or make improvements.

Net

"Net": A lease agreement where the tenant pays the real estate taxes.

NN

"NN": A lease agreement where the tenant pays real estate taxes and building insurance.

NNN

"NNN": A lease agreement where the tenant pays real estate taxes, building insurance and maintenance.

Oral

"Oral": The terms of the lease are agreed orally (not in writing) between the lessee and lessor. Legal restrictions around oral agreements vary from state to state.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for ExistingLeaseType[src]

impl Debug for ExistingLeaseType[src]

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

impl Eq for ExistingLeaseType[src]

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

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

impl From<String> for ExistingLeaseType[src]

impl PartialEq<ExistingLeaseType> for ExistingLeaseType[src]

impl ResoEnumeration for ExistingLeaseType[src]

impl Serialize for ExistingLeaseType[src]

impl StructuralEq for ExistingLeaseType[src]

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