pub struct Ping<'a, 'b> { /* private fields */ }
Expand description
Builder for the Ping API
Returns whether the cluster is running.
Implementations§
Source§impl<'a, 'b> Ping<'a, 'b>
impl<'a, 'b> Ping<'a, 'b>
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 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 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.
Trait Implementations§
Auto Trait Implementations§
impl<'a, 'b> Freeze for Ping<'a, 'b>
impl<'a, 'b> !RefUnwindSafe for Ping<'a, 'b>
impl<'a, 'b> Send for Ping<'a, 'b>
impl<'a, 'b> Sync for Ping<'a, 'b>
impl<'a, 'b> Unpin for Ping<'a, 'b>
impl<'a, 'b> !UnwindSafe for Ping<'a, 'b>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more