[][src]Enum reso_dd::Possession

pub enum Possession {
    CloseOfEscrow,
    ClosePlus1Day,
    ClosePlus2Days,
    ClosePlus3Days,
    ClosePlus3to5Days,
    ClosePlus30Days,
    Negotiable,
    Other,
    RentalAgreement,
    SeeRemarks,
    SellerRentBack,
    SubjectToTenantRights,
    OpenEnumeration(String),
}

Variants

CloseOfEscrow

"Close Of Escrow": Possession is passed to the buyer at the close of escrow.

ClosePlus1Day

"Close Plus 1 Day": Possession is passed to the buyer one day after the close of escrow.

ClosePlus2Days

"Close Plus 2 Days": Possession is passed to the buyer two days after the close of escrow.

ClosePlus3Days

"Close Plus 3 Days": Possession is passed to the buyer 3 days after the close of escrow.

ClosePlus3to5Days

"Close Plus 3 to 5 Days": Possession is passed to the buyer 3 to 5 days after the close of escrow.

ClosePlus30Days

"Close Plus 30 Days": Possession is passed to the buyer 30 days after the close of escrow.

Negotiable

"Negotiable": Timing of the passing of possession to the buyer is negotiable.

Other

"Other": A type of possession not included in this list.

RentalAgreement

"Rental Agreement": Possession is stipulated in the rental agreement.

SeeRemarks

"See Remarks": See the listing/agent remarks for more information on possession.

SellerRentBack

"Seller Rent Back": Possession is determined by the details of the seller rent back agreement, which is in most cases the seller will remain resident.

SubjectToTenantRights

"Subject To Tenant Rights": The terms of the transfer of possession are subject to the rights of the current tenant.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for Possession[src]

impl Debug for Possession[src]

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

impl Eq for Possession[src]

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

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

impl From<String> for Possession[src]

impl PartialEq<Possession> for Possession[src]

impl ResoEnumeration for Possession[src]

impl Serialize for Possession[src]

impl StructuralEq for Possession[src]

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