[][src]Enum reso_dd::MediaCategory

pub enum MediaCategory {
    AgentPhoto,
    BrandedVirtualTour,
    Document,
    FloorPlan,
    OfficeLogo,
    OfficePhoto,
    Photo,
    UnbrandedVirtualTour,
    Video,
    OpenEnumeration(String),
}

Variants

AgentPhoto

"Agent Photo": The media is an agent photo.

BrandedVirtualTour

"Branded Virtual Tour": The media is a branded virtual tour.

Document

"Document": The media is a document.

FloorPlan

"Floor Plan": The media is a floor plan.

"Office Logo": The media is an office logo.

OfficePhoto

"Office Photo": The media is an office photo.

Photo

"Photo": The media is a photo.

UnbrandedVirtualTour

"Unbranded Virtual Tour": The media is an unbranded virtual tour.

Video

"Video": The media is a video.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for MediaCategory[src]

impl Debug for MediaCategory[src]

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

impl Eq for MediaCategory[src]

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

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

impl From<String> for MediaCategory[src]

impl PartialEq<MediaCategory> for MediaCategory[src]

impl ResoEnumeration for MediaCategory[src]

impl Serialize for MediaCategory[src]

impl StructuralEq for MediaCategory[src]

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