[][src]Enum reso_dd::CompensationType

pub enum CompensationType {
    Dollar,
    Percent,
    Other,
    SeeRemarks,
    OpenEnumeration(String),
}

Variants

Dollar

"$": The value entered in the BuyerAgencyCompensation field is in dollars.

Percent

"%": The value entered in the BuyerAgencyCompensation field is a percent of the gross compensation.

Other

"Other": A compensation type not included in this list

SeeRemarks

"See Remarks": The Buyer Agency Compensation Type is something other than % or $ or is some special combination of $, %, and other compensation types. See the applicable remarks field for more details about the compensation.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for CompensationType[src]

impl Debug for CompensationType[src]

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

impl Eq for CompensationType[src]

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

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

impl From<String> for CompensationType[src]

impl PartialEq<CompensationType> for CompensationType[src]

impl ResoEnumeration for CompensationType[src]

impl Serialize for CompensationType[src]

impl StructuralEq for CompensationType[src]

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