[][src]Enum nakadion::publisher::SubmissionFailure

pub enum SubmissionFailure {
    Unprocessable(Vec<BatchItemResponse>),
    NotAllSubmitted(Vec<BatchItemResponse>),
}

The outcome of a submission/publishing attempt to Nakadi.

See also Nakadi Manual

Variants

Unprocessable(Vec<BatchItemResponse>)

At least one event failed to be validated, enriched or partitioned. None were submitted.

Nakadi responded with 422-UNPROCESSABLE.

NotAllSubmitted(Vec<BatchItemResponse>)

At least one event has failed to be submitted. The batch might be partially submitted.

Nakadi responded with 207-MULTI STATUS.

Implementations

impl SubmissionFailure[src]

pub fn is_empty(&self) -> bool[src]

Returns true if there are no BatchItemResponses.

This means also that no errors occurred.

pub fn len(&self) -> usize[src]

Returns the amount of BatchItemResponses.

Usually at least one contains an error.

pub fn iter(&self) -> impl Iterator<Item = &BatchItemResponse>[src]

Iterate over all BatchItemResponses

pub fn failed_response_items(&self) -> impl Iterator<Item = &BatchItemResponse>[src]

Iterate over all BatchItemResponses where the publishing status is PublishingStatus::Failed

pub fn aborted_response_items(&self) -> impl Iterator<Item = &BatchItemResponse>[src]

Iterate over all BatchItemResponses where the publishing status is PublishingStatus::Aborted

pub fn submitted_response_items(
    &self
) -> impl Iterator<Item = &BatchItemResponse>
[src]

Iterate over all BatchItemResponses where the publishing status is PublishingStatus::Submitted

pub fn non_submitted_response_items(
    &self
) -> impl Iterator<Item = &BatchItemResponse>
[src]

Iterate over all BatchItemResponses where the publishing status is not PublishingStatus::Submitted

pub fn stats(&self) -> BatchStats[src]

Trait Implementations

impl Clone for SubmissionFailure[src]

impl Debug for SubmissionFailure[src]

impl Display for SubmissionFailure[src]

impl IntoIterator for SubmissionFailure[src]

type Item = BatchItemResponse

The type of the elements being iterated over.

type IntoIter = IntoIter<BatchItemResponse>

Which kind of iterator are we turning this into?

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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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>,