[][src]Enum reso_dd::OwnershipType

pub enum OwnershipType {
    Corporation,
    LLC,
    Partnership,
    SoleProprietor,
    OpenEnumeration(String),
}

Variants

Corporation

"Corporation": The ownership type of the business being sold is a corporation.

LLC

"LLC": The ownership type of the business being sold is a limited liability corporation.

Partnership

"Partnership": The ownership type of the business being sold is a partnership.

SoleProprietor

"Sole Proprietor": The ownership type of the business being sold is a sole proprietor.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for OwnershipType[src]

impl Debug for OwnershipType[src]

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

impl Eq for OwnershipType[src]

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

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

impl From<String> for OwnershipType[src]

impl PartialEq<OwnershipType> for OwnershipType[src]

impl ResoEnumeration for OwnershipType[src]

impl Serialize for OwnershipType[src]

impl StructuralEq for OwnershipType[src]

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