Struct elastic::client::responses::BulkItemError []

pub struct BulkItemError<TIndex = String, TType = String, TId = String> {
    pub action: BulkAction,
    pub index: TIndex,
    pub ty: TType,
    pub id: TId,
    pub err: Value,
}

A failed bulk response item.

Fields

Trait Implementations

impl<TIndex, TType, TId> Error for BulkItemError<TIndex, TType, TId> where
    TId: Display + Debug,
    TIndex: Display + Debug,
    TType: Display + Debug

A short description of the error. Read more

The lower-level cause of this error, if any. Read more

impl<TIndex, TType, TId> Display for BulkItemError<TIndex, TType, TId> where
    TId: Display + Debug,
    TIndex: Display + Debug,
    TType: Display + Debug

Formats the value using the given formatter. Read more

impl<TIndex, TType, TId> Debug for BulkItemError<TIndex, TType, TId> where
    TId: Debug,
    TIndex: Debug,
    TType: Debug

Formats the value using the given formatter.

impl<TIndex, TType, TId> Clone for BulkItemError<TIndex, TType, TId> where
    TId: Clone,
    TIndex: Clone,
    TType: Clone