[][src]Enum reso_dd::Permission

pub enum Permission {
    AgentOnly,
    FirmOnly,
    IDX,
    OfficeOnly,
    Private,
    Public,
    VOW,
    OpenEnumeration(String),
}

Variants

AgentOnly

"Agent Only": The image or document is for agent use only.

FirmOnly

"Firm Only": The image or document is for firm use only.

IDX

"IDX": The image or document is okay for IDX use.

OfficeOnly

"Office Only": The image or document is for office use only.

Private

"Private": The image or document is private and should have limited distribution.

Public

"Public": The image or document may be viewed by the public.

VOW

"VOW": The image or document is okay for VOW use.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for Permission[src]

impl Debug for Permission[src]

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

impl Eq for Permission[src]

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

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

impl From<String> for Permission[src]

impl PartialEq<Permission> for Permission[src]

impl ResoEnumeration for Permission[src]

impl Serialize for Permission[src]

impl StructuralEq for Permission[src]

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