Struct elasticsearch::enrich::Enrich[][src]

pub struct Enrich<'a> { /* fields omitted */ }

Namespace client for Enrich APIs

Implementations

impl<'a> Enrich<'a>[src]

pub fn new(transport: &'a Transport) -> Self[src]

Creates a new instance of Enrich

pub fn transport(&self) -> &Transport[src]

pub fn delete_policy<'b>(
    &'a self,
    parts: EnrichDeletePolicyParts<'b>
) -> EnrichDeletePolicy<'a, 'b>
[src]

Enrich Delete Policy API

Deletes an existing enrich policy and its enrich index.

pub fn execute_policy<'b>(
    &'a self,
    parts: EnrichExecutePolicyParts<'b>
) -> EnrichExecutePolicy<'a, 'b, ()>
[src]

Enrich Execute Policy API

Creates the enrich index for an existing enrich policy.

pub fn get_policy<'b>(
    &'a self,
    parts: EnrichGetPolicyParts<'b>
) -> EnrichGetPolicy<'a, 'b>
[src]

Enrich Get Policy API

Gets information about an enrich policy.

pub fn put_policy<'b>(
    &'a self,
    parts: EnrichPutPolicyParts<'b>
) -> EnrichPutPolicy<'a, 'b, ()>
[src]

Enrich Put Policy API

Creates a new enrich policy.

pub fn stats<'b>(&'a self) -> EnrichStats<'a, 'b>[src]

Enrich Stats API

Gets enrich coordinator statistics and information about enrich policies that are currently executing.

Auto Trait Implementations

impl<'a> !RefUnwindSafe for Enrich<'a>

impl<'a> Send for Enrich<'a>

impl<'a> Sync for Enrich<'a>

impl<'a> Unpin for Enrich<'a>

impl<'a> !UnwindSafe for Enrich<'a>

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.