Struct elasticsearch::transform::Transform
source · [−]pub struct Transform<'a> { /* private fields */ }
Expand description
Namespace client for Transform APIs
Implementations
sourceimpl<'a> Transform<'a>
impl<'a> Transform<'a>
pub fn transport(&self) -> &Transport
sourcepub fn delete_transform<'b>(
&'a self,
parts: TransformDeleteTransformParts<'b>
) -> TransformDeleteTransform<'a, 'b>
pub fn delete_transform<'b>(
&'a self,
parts: TransformDeleteTransformParts<'b>
) -> TransformDeleteTransform<'a, 'b>
Transform Delete Transform API
Deletes an existing transform.
sourcepub fn get_transform<'b>(
&'a self,
parts: TransformGetTransformParts<'b>
) -> TransformGetTransform<'a, 'b>
pub fn get_transform<'b>(
&'a self,
parts: TransformGetTransformParts<'b>
) -> TransformGetTransform<'a, 'b>
Retrieves configuration information for transforms.
sourcepub fn get_transform_stats<'b>(
&'a self,
parts: TransformGetTransformStatsParts<'b>
) -> TransformGetTransformStats<'a, 'b>
pub fn get_transform_stats<'b>(
&'a self,
parts: TransformGetTransformStatsParts<'b>
) -> TransformGetTransformStats<'a, 'b>
Transform Get Transform Stats API
Retrieves usage information for transforms.
sourcepub fn preview_transform<'b>(&'a self) -> TransformPreviewTransform<'a, 'b, ()>
pub fn preview_transform<'b>(&'a self) -> TransformPreviewTransform<'a, 'b, ()>
Transform Preview Transform API
Previews a transform.
sourcepub fn put_transform<'b>(
&'a self,
parts: TransformPutTransformParts<'b>
) -> TransformPutTransform<'a, 'b, ()>
pub fn put_transform<'b>(
&'a self,
parts: TransformPutTransformParts<'b>
) -> TransformPutTransform<'a, 'b, ()>
Instantiates a transform.
sourcepub fn start_transform<'b>(
&'a self,
parts: TransformStartTransformParts<'b>
) -> TransformStartTransform<'a, 'b, ()>
pub fn start_transform<'b>(
&'a self,
parts: TransformStartTransformParts<'b>
) -> TransformStartTransform<'a, 'b, ()>
Starts one or more transforms.
sourcepub fn stop_transform<'b>(
&'a self,
parts: TransformStopTransformParts<'b>
) -> TransformStopTransform<'a, 'b, ()>
pub fn stop_transform<'b>(
&'a self,
parts: TransformStopTransformParts<'b>
) -> TransformStopTransform<'a, 'b, ()>
Stops one or more transforms.
sourcepub fn update_transform<'b>(
&'a self,
parts: TransformUpdateTransformParts<'b>
) -> TransformUpdateTransform<'a, 'b, ()>
pub fn update_transform<'b>(
&'a self,
parts: TransformUpdateTransformParts<'b>
) -> TransformUpdateTransform<'a, 'b, ()>
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more