pub struct HealthCheck {Show 20 fields
pub timeout: Option<Duration>,
pub interval: Option<Duration>,
pub initial_jitter: Option<Duration>,
pub interval_jitter: Option<Duration>,
pub interval_jitter_percent: u32,
pub unhealthy_threshold: Option<u32>,
pub healthy_threshold: Option<u32>,
pub alt_port: Option<u32>,
pub reuse_connection: Option<bool>,
pub no_traffic_interval: Option<Duration>,
pub no_traffic_healthy_interval: Option<Duration>,
pub unhealthy_interval: Option<Duration>,
pub unhealthy_edge_interval: Option<Duration>,
pub healthy_edge_interval: Option<Duration>,
pub event_log_path: String,
pub event_service: Option<EventServiceConfig>,
pub always_log_health_check_failures: bool,
pub tls_options: Option<TlsOptions>,
pub transport_socket_match_criteria: Option<Struct>,
pub health_checker: Option<HealthChecker>,
}
Fields§
§timeout: Option<Duration>
§interval: Option<Duration>
§initial_jitter: Option<Duration>
§interval_jitter: Option<Duration>
§interval_jitter_percent: u32
§unhealthy_threshold: Option<u32>
§healthy_threshold: Option<u32>
§alt_port: Option<u32>
§reuse_connection: Option<bool>
§no_traffic_interval: Option<Duration>
§no_traffic_healthy_interval: Option<Duration>
§unhealthy_interval: Option<Duration>
§unhealthy_edge_interval: Option<Duration>
§healthy_edge_interval: Option<Duration>
§event_log_path: String
§event_service: Option<EventServiceConfig>
§always_log_health_check_failures: bool
§tls_options: Option<TlsOptions>
§transport_socket_match_criteria: Option<Struct>
§health_checker: Option<HealthChecker>
Trait Implementations§
Source§impl Clone for HealthCheck
impl Clone for HealthCheck
Source§fn clone(&self) -> HealthCheck
fn clone(&self) -> HealthCheck
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for HealthCheck
impl Debug for HealthCheck
Source§impl Default for HealthCheck
impl Default for HealthCheck
Source§impl Message for HealthCheck
impl Message for HealthCheck
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
Source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message to a buffer. Read more
Source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
Encodes the message to a newly allocated buffer.
Source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message with a length-delimiter to a buffer. Read more
Source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
Encodes the message with a length-delimiter to a newly allocated buffer.
Source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes an instance of the message from a buffer. Read more
Source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes a length-delimited instance of the message from the buffer.
Source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes an instance of the message from a buffer, and merges it into
self
. Read moreSource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes a length-delimited instance of the message from buffer, and
merges it into
self
.Source§impl PartialEq for HealthCheck
impl PartialEq for HealthCheck
impl StructuralPartialEq for HealthCheck
Auto Trait Implementations§
impl Freeze for HealthCheck
impl RefUnwindSafe for HealthCheck
impl Send for HealthCheck
impl Sync for HealthCheck
impl Unpin for HealthCheck
impl UnwindSafe for HealthCheck
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request
§impl<L> LayerExt<L> for L
impl<L> LayerExt<L> for L
§fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
Applies the layer to a service and wraps it in [
Layered
].