[][src]Enum reso_dd::HorseAmenities

pub enum HorseAmenities {
    Arena,
    Barn,
    BoardingFacilities,
    Corrals,
    HayStorage,
    None,
    Other,
    Paddocks,
    PalpationChute,
    Pasture,
    RidingTrail,
    RoundPen,
    SeeRemarks,
    ShavingBin,
    Stables,
    TackRoom,
    TrailerStorage,
    WashRack,
    OpenEnumeration(String),
}

Variants

Arena

"Arena": The property allows for horses and has an arena.

Barn

"Barn": The property allows horses and has a barn.

BoardingFacilities

"Boarding Facilities": The property had horse boarding facilities.

Corrals

"Corral(s)": The property allows horses and has one or more corrals.

HayStorage

"Hay Storage": The property allows horses and has hay storage.

None

"None": The property either does not allow horses or has no amenities for horses.

Other

"Other": The property has horse amenities other than those in this list.

Paddocks

"Paddocks": The property allows horses and has an enclosed living are for your horse(s). A paddock is also known as a sacrifice area which got its name because the owner was sacrificing some of their land for the benefit of the horse.

PalpationChute

"Palpation Chute": A portion of the livestock chute where the animal is held for examination or other purposes.

Pasture

"Pasture": The property includes or has access to a pasture for horses.

RidingTrail

"Riding Trail": The property includes or has access to a riding trail(s).

RoundPen

"Round Pen": The property includes or has access to a round enclosure used for horse training.

SeeRemarks

"See Remarks": See the remarks fields for additional information about horse amenities.

ShavingBin

"Shaving Bin": The property includes or has access to a storage container for wood shavings that are use as ground cover for horses.

Stables

"Stable(s)": The property includes or has access to horse stable(s).

TackRoom

"Tack Room": The property includes or has access to a room to store equipment such as saddles, stirrups, bridles, halters, reins, bits, harnesses, martingales, breastplates, etc.

TrailerStorage

"Trailer Storage": The property includes or has access to a place to store a horse trailer.

WashRack

"Wash Rack": The property includes or has access to a rack used to confine/restrain a horse for purposes of washing the horse.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for HorseAmenities[src]

impl Debug for HorseAmenities[src]

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

impl Eq for HorseAmenities[src]

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

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

impl From<String> for HorseAmenities[src]

impl PartialEq<HorseAmenities> for HorseAmenities[src]

impl ResoEnumeration for HorseAmenities[src]

impl Serialize for HorseAmenities[src]

impl StructuralEq for HorseAmenities[src]

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