[][src]Enum nakadi_types::publishing::PublishingStatus

pub enum PublishingStatus {
    Submitted,
    Failed,
    Aborted,
}

Indicator of the submission of the Event within a Batch.

See also Nakadi Manual

Variants

Submitted

Indicates successful submission, including commit on he underlying broker.

Failed

Indicates the message submission was not possible and can be resubmitted if so desired.

Aborted

Indicates that the submission of this item was not attempted any further due to a failure on another item in the batch.

Trait Implementations

impl Clone for PublishingStatus[src]

impl Copy for PublishingStatus[src]

impl Debug for PublishingStatus[src]

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

impl Eq for PublishingStatus[src]

impl PartialEq<PublishingStatus> for PublishingStatus[src]

impl Serialize for PublishingStatus[src]

impl StructuralEq for PublishingStatus[src]

impl StructuralPartialEq for PublishingStatus[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: for<'de> 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,