[][src]Enum reso_dd::QueueTransactionType

pub enum QueueTransactionType {
    Add,
    Change,
    Delete,
    OpenEnumeration(String),
}

Variants

Add

"Add": The resource record being referenced by the queue does not yet exist in the target and is an addition.

Change

"Change": The resource record being referenced by the queue exists in the target and is being modified.

Delete

"Delete": The resource record being referenced by the queue exists in the target and is to be removed.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for QueueTransactionType[src]

impl Debug for QueueTransactionType[src]

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

impl Eq for QueueTransactionType[src]

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

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

impl From<String> for QueueTransactionType[src]

impl PartialEq<QueueTransactionType> for QueueTransactionType[src]

impl ResoEnumeration for QueueTransactionType[src]

impl Serialize for QueueTransactionType[src]

impl StructuralEq for QueueTransactionType[src]

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