[][src]Enum reso_dd::CommonInterest

pub enum CommonInterest {
    CommunityApartment,
    Condominium,
    None,
    PlannedDevelopment,
    StockCooperative,
    Timeshare,
    OpenEnumeration(String),
}

Variants

CommunityApartment

"Community Apartment": Ownership interest where purchaser receives a partial/fractional interest in the land coupled with the right of exclusive occupancy of an apartment located thereon. The owners elect a governing board which operates and maintains the project.

Condominium

"Condominium": Ownership of an individual unit where each homeowner only owns their individual unit space, and an undivided share in the ownership of common areas or in a common homeowner’s association (HOA). Generally, the ownership of the individual unit is described in a Condominium Plan and usually consists of ownership of the surface of the walls and the space within. The CC&Rs will detail what building components and other complex amenities are considered part of the common area and will describe the common area or HOA ownership percentages, and maintenance responsibilities.

None

"None": Ownership of an entire parcel or lot that is not in a CID, or not held subject to any other Common Interest rights.

PlannedDevelopment

"Planned Development": Ownership consisting of an individual lot or parcel, generally including the ownership of the land and any structures on the individual lot or parcel. Owners also receive use right in common areas that are generally owned by a HOA. Some common areas may be reserved for the use of some or all of the individual lot owners. Generally, the CC&Rs will detail the method of management, maintenance, use and control of the common areas and may provide for some control and maintenance of the individual lots.

StockCooperative

"Stock Cooperative": Ownership of an interest in a corporation which is formed primarily for the purpose of holding title to improved real property, either in fee simple or for a term of years. All or substantially all of the shareholders receive a right of exclusive occupancy of a portion of the real property, which right is transferable only concurrently with the transfer of the share(s) of stock in the corporation.

Timeshare

"Timeshare": Ownership in a time period or a point system granting possession rights to a unit or occupancy rights at a property. The property may be owned either by a number of individuals on a fractional basis, or may be an interest in a corporation each with the right of possession for a specified time interval. Time-sharing is commonly applied to resort and vacation properties.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for CommonInterest[src]

impl Debug for CommonInterest[src]

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

impl Eq for CommonInterest[src]

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

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

impl From<String> for CommonInterest[src]

impl PartialEq<CommonInterest> for CommonInterest[src]

impl ResoEnumeration for CommonInterest[src]

impl Serialize for CommonInterest[src]

impl StructuralEq for CommonInterest[src]

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