Struct elasticsearch::transform::Transform[][src]

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

Namespace client for Transform APIs

Implementations

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

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

Creates a new instance of Transform

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

pub fn delete_transform<'b>(
    &'a self,
    parts: TransformDeleteTransformParts<'b>
) -> TransformDeleteTransform<'a, 'b>
[src]

Transform Delete Transform API

Deletes an existing transform.

pub fn get_transform<'b>(
    &'a self,
    parts: TransformGetTransformParts<'b>
) -> TransformGetTransform<'a, 'b>
[src]

Transform Get Transform API

Retrieves configuration information for transforms.

pub fn get_transform_stats<'b>(
    &'a self,
    parts: TransformGetTransformStatsParts<'b>
) -> TransformGetTransformStats<'a, 'b>
[src]

Transform Get Transform Stats API

Retrieves usage information for transforms.

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

Transform Preview Transform API

Previews a transform.

pub fn put_transform<'b>(
    &'a self,
    parts: TransformPutTransformParts<'b>
) -> TransformPutTransform<'a, 'b, ()>
[src]

Transform Put Transform API

Instantiates a transform.

pub fn start_transform<'b>(
    &'a self,
    parts: TransformStartTransformParts<'b>
) -> TransformStartTransform<'a, 'b, ()>
[src]

Transform Start Transform API

Starts one or more transforms.

pub fn stop_transform<'b>(
    &'a self,
    parts: TransformStopTransformParts<'b>
) -> TransformStopTransform<'a, 'b, ()>
[src]

Transform Stop Transform API

Stops one or more transforms.

pub fn update_transform<'b>(
    &'a self,
    parts: TransformUpdateTransformParts<'b>
) -> TransformUpdateTransform<'a, 'b, ()>
[src]

Transform Update Transform API

Updates certain properties of a transform.

Auto Trait Implementations

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

impl<'a> Send for Transform<'a>

impl<'a> Sync for Transform<'a>

impl<'a> Unpin for Transform<'a>

impl<'a> !UnwindSafe for Transform<'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.