[][src]Enum reso_dd::ActorType

pub enum ActorType {
    Agent,
    Bot,
    Client,
    Consumer,
    Unknown,
    OpenEnumeration(String),
}

Variants

Agent

"Agent": The event was generated by what the source defines as a real estate professional

Bot

"Bot": The event was generated by a bot or some type of scripting tool

Client

"Client": The event was generated by what the source defines as a registered client

Consumer

"Consumer": The event was generated by what the source defines as a consumer

Unknown

"Unknown": The generating Actor type could not be identified

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for ActorType[src]

impl Debug for ActorType[src]

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

impl Eq for ActorType[src]

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

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

impl From<String> for ActorType[src]

impl PartialEq<ActorType> for ActorType[src]

impl ResoEnumeration for ActorType[src]

impl Serialize for ActorType[src]

impl StructuralEq for ActorType[src]

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