[][src]Struct rs_es::operations::index::IndexOperation

pub struct IndexOperation<'a, 'b, E: Serialize + 'b> { /* fields omitted */ }

An indexing operation

Methods

impl<'a, 'b, E: Serialize + 'b> IndexOperation<'a, 'b, E>[src]

pub fn new(
    client: &'a mut Client,
    index: &'b str,
    doc_type: &'b str
) -> IndexOperation<'a, 'b, E>
[src]

pub fn with_doc(&'b mut self, doc: &'b E) -> &'b mut Self[src]

pub fn with_id(&'b mut self, id: &'b str) -> &'b mut Self[src]

pub fn with_ttl<T: Into<OptionVal>>(&'a mut self, val: T) -> &'a mut Self[src]

pub fn with_version<T: Into<OptionVal>>(&'a mut self, val: T) -> &'a mut Self[src]

pub fn with_version_type<T: Into<OptionVal>>(
    &'a mut self,
    val: T
) -> &'a mut Self
[src]

pub fn with_op_type<T: Into<OptionVal>>(&'a mut self, val: T) -> &'a mut Self[src]

pub fn with_routing<T: Into<OptionVal>>(&'a mut self, val: T) -> &'a mut Self[src]

pub fn with_parent<T: Into<OptionVal>>(&'a mut self, val: T) -> &'a mut Self[src]

pub fn with_timestamp<T: Into<OptionVal>>(&'a mut self, val: T) -> &'a mut Self[src]

pub fn with_refresh<T: Into<OptionVal>>(&'a mut self, val: T) -> &'a mut Self[src]

pub fn with_timeout<T: Into<OptionVal>>(&'a mut self, val: T) -> &'a mut Self[src]

pub fn send(&'b mut self) -> Result<IndexResult, EsError>[src]

Trait Implementations

impl<'a, 'b, E: Debug + Serialize + 'b> Debug for IndexOperation<'a, 'b, E>[src]

Auto Trait Implementations

impl<'a, 'b, E> Send for IndexOperation<'a, 'b, E> where
    E: Sync

impl<'a, 'b, E> Sync for IndexOperation<'a, 'b, E> where
    E: Sync

Blanket Implementations

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

impl<T> From<T> for 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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err