[][src]Enum reso_dd::NotedBy

pub enum NotedBy {
    Agent,
    Contact,
    OpenEnumeration(String),
}

Variants

Agent

"Agent": The agent has written the given note about the given listing.

Contact

"Contact": The contact has written the given note about the given listing.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for NotedBy[src]

impl Debug for NotedBy[src]

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

impl Eq for NotedBy[src]

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

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

impl From<String> for NotedBy[src]

impl PartialEq<NotedBy> for NotedBy[src]

impl ResoEnumeration for NotedBy[src]

impl Serialize for NotedBy[src]

impl StructuralEq for NotedBy[src]

impl StructuralPartialEq for NotedBy[src]

Auto Trait Implementations

impl RefUnwindSafe for NotedBy

impl Send for NotedBy

impl Sync for NotedBy

impl Unpin for NotedBy

impl UnwindSafe for NotedBy

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.