Struct elastic::client::responses::BulkItem []

pub struct BulkItem<TIndex = String, TType = String, TId = String> {
    pub action: BulkAction,
    pub index: TIndex,
    pub ty: TType,
    pub id: TId,
    pub version: Option<u32>,
    pub shards: Option<Shards>,
    pub created: Option<bool>,
    pub found: Option<bool>,
}

A successful bulk response item.

Fields

Trait Implementations

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

Formats the value using the given formatter.

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