[][src]Enum reso_dd::OfficeBranchType

pub enum OfficeBranchType {
    Branch,
    Main,
    StandAlone,
    OpenEnumeration(String),
}

Variants

Branch

"Branch": This office is a branch office.

Main

"Main": This office is the broker's main office.

StandAlone

"Stand Alone": This office is a stand alone, or single office brokerage.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for OfficeBranchType[src]

impl Debug for OfficeBranchType[src]

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

impl Eq for OfficeBranchType[src]

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

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

impl From<String> for OfficeBranchType[src]

impl PartialEq<OfficeBranchType> for OfficeBranchType[src]

impl ResoEnumeration for OfficeBranchType[src]

impl Serialize for OfficeBranchType[src]

impl StructuralEq for OfficeBranchType[src]

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