[][src]Enum reso_dd::Skirt

pub enum Skirt {
    Aluminum,
    Block,
    Brick,
    Combination,
    Concrete,
    Fiberglass,
    Frame,
    Glass,
    Masonite,
    Metal,
    None,
    Other,
    Steel,
    Stone,
    Stucco,
    Synthetic,
    Unknown,
    Vinyl,
    Wood,
    OpenEnumeration(String),
}

Variants

Aluminum

"Aluminum": The mobile/manufactured home has a skirt made of aluminum.

Block

"Block": The mobile/manufactured home has a skirt made of block.

Brick

"Brick": The mobile/manufactured home has a skirt made of brick.

Combination

"Combination": The mobile/manufactured home has a skirt made of a combination of materials.

Concrete

"Concrete": The mobile/manufactured home has a skirt made of concrete.

Fiberglass

"Fiberglass": The mobile/manufactured home has a skirt made of fiberglass.

Frame

"Frame": The mobile/manufactured home has a skirt that is framed.

Glass

"Glass": The mobile/manufactured home has a skirt made of glass.

Masonite

"Masonite": The mobile/manufactured home has a skirt made of Masonite.

Metal

"Metal": The mobile/manufactured home has a skirt made of metal.

None

"None": The mobile/manufactured home does not have a skirt.

Other

"Other": The mobile/manufactured home has a skirt made of materials other than those in this list.

Steel

"Steel": The mobile/manufactured home has a skirt made of steel.

Stone

"Stone": The mobile/manufactured home has a skirt made of stone.

Stucco

"Stucco": The mobile/manufactured home has a skirt made of stucco.

Synthetic

"Synthetic": The mobile/manufactured home has a skirt made of synthetic materials.

Unknown

"Unknown": The mobile/manufactured home has a skirt made of unknown materials.

Vinyl

"Vinyl": The mobile/manufactured home has a skirt made of vinyl.

Wood

"Wood": The mobile/manufactured home has a skirt made of wood.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for Skirt[src]

impl Debug for Skirt[src]

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

impl Eq for Skirt[src]

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

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

impl From<String> for Skirt[src]

impl PartialEq<Skirt> for Skirt[src]

impl ResoEnumeration for Skirt[src]

impl Serialize for Skirt[src]

impl StructuralEq for Skirt[src]

impl StructuralPartialEq for Skirt[src]

Auto Trait Implementations

impl RefUnwindSafe for Skirt

impl Send for Skirt

impl Sync for Skirt

impl Unpin for Skirt

impl UnwindSafe for Skirt

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.