Struct elasticsearch::BulkIndexOperation[][src]

pub struct BulkIndexOperation<B> { /* fields omitted */ }

Bulk index operation

Implementations

impl<B> BulkIndexOperation<B>[src]

pub fn new(source: B) -> Self[src]

Creates a new instance of BulkIndexOperation

pub fn id<S>(self, id: S) -> Self where
    S: Into<String>, 
[src]

Specify the id for the document

If an id is not specified, Elasticsearch will generate an id for the document which will be returned in the response.

pub fn index<S>(self, index: S) -> Self where
    S: Into<String>, 
[src]

Specify the name of the index to perform the bulk update operation against.

Each bulk operation can specify an index to operate against. If all bulk operations in one Bulk API call will operate against the same index, specify the index on Bulk using BulkParts::Index, and omit specifying the index on each bulk operation.

pub fn pipeline<S>(self, pipeline: S) -> Self where
    S: Into<String>, 
[src]

The ID of the pipeline to use to preprocess incoming documents

pub fn routing<S>(self, routing: S) -> Self where
    S: Into<String>, 
[src]

Target the specified primary shard

pub fn if_seq_no(self, seq_no: i64) -> Self[src]

specify a sequence number to use for optimistic concurrency control

pub fn if_primary_term(self, primary_term: i64) -> Self[src]

specify a primary term to use for optimistic concurrency control

pub fn version(self, version: i64) -> Self[src]

specify a version number to use for optimistic concurrency control

pub fn version_type(self, version_type: VersionType) -> Self[src]

The type of versioning used when a version is specified

Trait Implementations

impl<B> From<BulkIndexOperation<B>> for BulkOperation<B>[src]

Auto Trait Implementations

impl<B> RefUnwindSafe for BulkIndexOperation<B> where
    B: RefUnwindSafe

impl<B> Send for BulkIndexOperation<B> where
    B: Send

impl<B> Sync for BulkIndexOperation<B> where
    B: Sync

impl<B> Unpin for BulkIndexOperation<B> where
    B: Unpin

impl<B> UnwindSafe for BulkIndexOperation<B> where
    B: UnwindSafe

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.