[][src]Enum actix_elastic::client::EsCmd

pub enum EsCmd<T: Serialize + DeserializeOwned + 'static> {
    Ping,
    Index(Cow<'static, str>, (String, T)),
    BulkIndex(Cow<'static, str>, Vec<(String, T)>),
    BulkDelete(Cow<'static, str>, Vec<String>),
    Search(Cow<'static, str>, Value),
    SearchHits(Cow<'static, str>, Value),
    DeleteByQuery(Cow<'static, str>, Value),
    UpdateByQuery(Cow<'static, str>, Value),
    ScrollBytes(StringValue),
    ScrollItems(StringValue),
    CatIndices,
}

Variants

Ping
Index(Cow<'static, str>, (String, T))
BulkIndex(Cow<'static, str>, Vec<(String, T)>)
BulkDelete(Cow<'static, str>, Vec<String>)
Search(Cow<'static, str>, Value)
SearchHits(Cow<'static, str>, Value)
DeleteByQuery(Cow<'static, str>, Value)
UpdateByQuery(Cow<'static, str>, Value)
ScrollBytes(StringValue)
ScrollItems(StringValue)
CatIndices

Trait Implementations

impl<T: Debug + Serialize + DeserializeOwned + 'static> Debug for EsCmd<T>[src]

impl<T: Serialize + DeserializeOwned + Unpin + 'static> Handler<EsCmd<T>> for EsClient<T>[src]

type Result = ResponseActFuture<Self, Result<EsResult<T>>>

The type of value that this handler will return. Read more

impl<T: Serialize + DeserializeOwned + 'static> Message for EsCmd<T>[src]

type Result = Result<EsResult<T>>

The type of value that this message will resolved with if it is successful. Read more

Auto Trait Implementations

impl<T> RefUnwindSafe for EsCmd<T> where
    T: RefUnwindSafe

impl<T> Send for EsCmd<T> where
    T: Send

impl<T> Sync for EsCmd<T> where
    T: Sync

impl<T> Unpin for EsCmd<T> where
    T: Unpin

impl<T> UnwindSafe for EsCmd<T> where
    T: 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> 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,