[][src]Struct nakadion::publisher::BatchResponse

pub struct BatchResponse {
    pub flow_id: Option<FlowId>,
    pub batch_items: Vec<BatchItemResponse>,
}

An aggregation of status items corresponding to each individual Event’s publishing attempt.

See also Nakadi Manual

Fields

flow_id: Option<FlowId>

Since this struct is usually part of a failure scenario it can contain a FlowId

batch_items: Vec<BatchItemResponse>

Methods

impl BatchResponse[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 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 iter(&self) -> impl Iterator<Item = &BatchItemResponse>[src]

Iterate over all BatchItemResponses

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

Trait Implementations

impl Clone for BatchResponse[src]

impl Debug for BatchResponse[src]

impl Default for BatchResponse[src]

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

impl Display for BatchResponse[src]

impl IntoIterator for BatchResponse[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?

impl Serialize for BatchResponse[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<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>,