Struct elasticsearch::cluster::ClusterReroute
source · [−]pub struct ClusterReroute<'a, 'b, B> { /* private fields */ }
Expand description
Builder for the Cluster Reroute API
Allows to manually change the allocation of individual shards in the cluster.
Implementations
sourceimpl<'a, 'b, B> ClusterReroute<'a, 'b, B> where
B: Body,
impl<'a, 'b, B> ClusterReroute<'a, 'b, B> where
B: Body,
sourcepub fn new(transport: &'a Transport) -> Self
pub fn new(transport: &'a Transport) -> Self
Creates a new instance of ClusterReroute
sourcepub fn body<T>(self, body: T) -> ClusterReroute<'a, 'b, JsonBody<T>> where
T: Serialize,
pub fn body<T>(self, body: T) -> ClusterReroute<'a, 'b, JsonBody<T>> where
T: Serialize,
The body for the API call
sourcepub fn dry_run(self, dry_run: bool) -> Self
pub fn dry_run(self, dry_run: bool) -> Self
Simulate the operation only and return the resulting state
sourcepub fn error_trace(self, error_trace: bool) -> Self
pub fn error_trace(self, error_trace: bool) -> Self
Include the stack trace of returned errors.
sourcepub fn explain(self, explain: bool) -> Self
pub fn explain(self, explain: bool) -> Self
Return an explanation of why the commands can or cannot be executed
sourcepub fn filter_path(self, filter_path: &'b [&'b str]) -> Self
pub fn filter_path(self, filter_path: &'b [&'b str]) -> Self
A comma-separated list of filters used to reduce the response.
sourcepub fn header(self, key: HeaderName, value: HeaderValue) -> Self
pub fn header(self, key: HeaderName, value: HeaderValue) -> Self
Adds a HTTP header
sourcepub fn master_timeout(self, master_timeout: &'b str) -> Self
pub fn master_timeout(self, master_timeout: &'b str) -> Self
Explicit operation timeout for connection to master node
sourcepub fn metric(self, metric: &'b [&'b str]) -> Self
pub fn metric(self, metric: &'b [&'b str]) -> Self
Limit the information returned to the specified metrics. Defaults to all but metadata
sourcepub fn request_timeout(self, timeout: Duration) -> Self
pub fn request_timeout(self, timeout: Duration) -> Self
Sets a request timeout for this API call.
The timeout is applied from when the request starts connecting until the response body has finished.
sourcepub fn retry_failed(self, retry_failed: bool) -> Self
pub fn retry_failed(self, retry_failed: bool) -> Self
Retries allocation of shards that are blocked due to too many subsequent allocation failures
Trait Implementations
sourceimpl<'a, 'b, B: Clone> Clone for ClusterReroute<'a, 'b, B>
impl<'a, 'b, B: Clone> Clone for ClusterReroute<'a, 'b, B>
sourcefn clone(&self) -> ClusterReroute<'a, 'b, B>
fn clone(&self) -> ClusterReroute<'a, 'b, B>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
Auto Trait Implementations
impl<'a, 'b, B> !RefUnwindSafe for ClusterReroute<'a, 'b, B>
impl<'a, 'b, B> Send for ClusterReroute<'a, 'b, B> where
B: Send,
impl<'a, 'b, B> Sync for ClusterReroute<'a, 'b, B> where
B: Sync,
impl<'a, 'b, B> Unpin for ClusterReroute<'a, 'b, B> where
B: Unpin,
impl<'a, 'b, B> !UnwindSafe for ClusterReroute<'a, 'b, B>
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