[][src]Enum reso_dd::ResourceName

pub enum ResourceName {
    Contacts,
    Member,
    Office,
    Property,
    OpenEnumeration(String),
}

Variants

Contacts

"Contacts": This record is related to another record in the Contacts resource.

Member

"Member": This record is related to another record in the Member resource.

Office

"Office": This record is related to another record in the Office resource.

Property

"Property": This record is related to another record in the Property resource.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for ResourceName[src]

impl Debug for ResourceName[src]

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

impl Eq for ResourceName[src]

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

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

impl From<String> for ResourceName[src]

impl PartialEq<ResourceName> for ResourceName[src]

impl ResoEnumeration for ResourceName[src]

impl Serialize for ResourceName[src]

impl StructuralEq for ResourceName[src]

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