[][src]Enum reso_dd::Fencing

pub enum Fencing {
    BackYard,
    BarbedWire,
    Block,
    Brick,
    ChainLink,
    CrossFenced,
    Electric,
    Fenced,
    FrontYard,
    Full,
    Gate,
    Invisible,
    Masonry,
    None,
    Other,
    Partial,
    PartialCross,
    Perimeter,
    Pipe,
    Privacy,
    Security,
    SeeRemarks,
    SlumpStone,
    SplitRail,
    Stone,
    Vinyl,
    Wire,
    Wood,
    WroughtIron,
    OpenEnumeration(String),
}

Variants

BackYard

"Back Yard": The back yard is fenced.

BarbedWire

"Barbed Wire": The fencing has barbed wire.

Block

"Block": The property has a block wall(s).

Brick

"Brick": The property has a brick wall(s).

"Chain Link": The property has chain link fencing.

CrossFenced

"Cross Fenced": The property is cross fenced.

Electric

"Electric": The property has electric fencing.

Fenced

"Fenced": The property is fenced.

FrontYard

"Front Yard": The front yard is fenced.

Full

"Full": The full property is fenced.

Gate

"Gate": The fencing has a gate(s).

Invisible

"Invisible": The property has invisible fencing.

Masonry

"Masonry": The property has masonry wall(s).

None

"None": The property has no fencing.

Other

"Other": The property has a type of fencing that is not included in this list.

Partial

"Partial": The property is partially fenced.

PartialCross

"Partial Cross": The property has partial cross fencing.

Perimeter

"Perimeter": The property has a perimeter fence.

Pipe

"Pipe": The property has pipe fencing.

Privacy

"Privacy": The property has privacy fencing.

Security

"Security": The property has security fencing.

SeeRemarks

"See Remarks": See the Public or Private remarks for details on the fencing.

SlumpStone

"Slump Stone": The property has slump stone wall(s).

SplitRail

"Split Rail": The property has split rail fencing.

Stone

"Stone": The property has stone wall(s).

Vinyl

"Vinyl": The property has vinyl fencing.

Wire

"Wire": The property has wire fencing.

Wood

"Wood": The property has wooden fencing.

WroughtIron

"Wrought Iron": The property has wrought iron fencing.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for Fencing[src]

impl Debug for Fencing[src]

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

impl Eq for Fencing[src]

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

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

impl From<String> for Fencing[src]

impl PartialEq<Fencing> for Fencing[src]

impl ResoEnumeration for Fencing[src]

impl Serialize for Fencing[src]

impl StructuralEq for Fencing[src]

impl StructuralPartialEq for Fencing[src]

Auto Trait Implementations

impl RefUnwindSafe for Fencing

impl Send for Fencing

impl Sync for Fencing

impl Unpin for Fencing

impl UnwindSafe for Fencing

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.