[][src]Enum reso_dd::RuleFormat

pub enum RuleFormat {
    Filter,
    JavaScript,
    REBR,
    RetsValidation,
    OpenEnumeration(String),
}

Variants

Filter

"$filter": Business rules expressed utilizing the OData $filter syntax. The underlying structure of the rules are not defined at this time and may vary from source to source.

JavaScript

"JavaScript": Business rules expressed utilizing the JavaScript language. The underlying structure of the rules are not defined at this time and may vary from source to source.

REBR

"REBR": Real Estate Business Rule (REBR) notation, based on RuleSpeak structured notation, uses a predictable syntax to allow humans to clearly and unambiguously specify real estate business rules. REBR is not machine consumable and design for human production and consumption.

RetsValidation

"RetsValidation": Business rules expressed using the well defined RETS 1.9 Validation Expressions. See section 11.4.7 of the RETS 1.9 Specification for additional details. https://www.reso.org/download/rets-1-9-specification/

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for RuleFormat[src]

impl Debug for RuleFormat[src]

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

impl Eq for RuleFormat[src]

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

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

impl From<String> for RuleFormat[src]

impl PartialEq<RuleFormat> for RuleFormat[src]

impl ResoEnumeration for RuleFormat[src]

impl Serialize for RuleFormat[src]

impl StructuralEq for RuleFormat[src]

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