Struct polaris_specification::v1::RecoverConfig  
source · pub struct RecoverConfig {
    pub sleep_window: Option<Duration>,
    pub max_retry_after_half_open: Option<u32>,
    pub request_rate_after_half_open: Vec<u32>,
    pub success_rate_to_close: Option<u32>,
    pub request_count_after_half_open: Option<u32>,
    pub outlier_detect_when: i32,
}Expand description
熔断恢复配置
Fields§
§sleep_window: Option<Duration>触发熔断后到半开状态之间的等待间隔
max_retry_after_half_open: Option<u32>半开后,最多重试多少次恢复
request_rate_after_half_open: Vec<u32>半开后放量的最大百分比
success_rate_to_close: Option<u32>熔断器半开到关闭所必须的最少成功率,默认100%
request_count_after_half_open: Option<u32>半开后最大放量数(用户不配置最大百分比时默认使用该配置)
outlier_detect_when: i32Implementations§
source§impl RecoverConfig
 
impl RecoverConfig
sourcepub fn outlier_detect_when(&self) -> OutlierDetectWhen
 
pub fn outlier_detect_when(&self) -> OutlierDetectWhen
Returns the enum value of outlier_detect_when, or the default if the field is set to an invalid enum value.
sourcepub fn set_outlier_detect_when(&mut self, value: OutlierDetectWhen)
 
pub fn set_outlier_detect_when(&mut self, value: OutlierDetectWhen)
Sets outlier_detect_when to the provided enum value.
Trait Implementations§
source§impl Clone for RecoverConfig
 
impl Clone for RecoverConfig
source§fn clone(&self) -> RecoverConfig
 
fn clone(&self) -> RecoverConfig
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 RecoverConfig
 
impl Debug for RecoverConfig
source§impl Default for RecoverConfig
 
impl Default for RecoverConfig
source§impl Message for RecoverConfig
 
impl Message for RecoverConfig
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<B>(&self, buf: &mut B) -> Result<(), EncodeError>where
    B: BufMut,
    Self: Sized,
 
fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>where B: BufMut, Self: Sized,
Encodes the message to a buffer. Read more
source§fn encode_to_vec(&self) -> Vec<u8, Global>where
    Self: Sized,
 
fn encode_to_vec(&self) -> Vec<u8, Global>where Self: Sized,
Encodes the message to a newly allocated buffer.
source§fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>where
    B: BufMut,
    Self: Sized,
 
fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>where B: BufMut, Self: Sized,
Encodes the message with a length-delimiter to a buffer. Read more
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8, Global>where
    Self: Sized,
 
fn encode_length_delimited_to_vec(&self) -> Vec<u8, Global>where Self: Sized,
Encodes the message with a length-delimiter to a newly allocated buffer.
source§fn decode<B>(buf: B) -> Result<Self, DecodeError>where
    B: Buf,
    Self: Default,
 
fn decode<B>(buf: B) -> Result<Self, DecodeError>where B: Buf, Self: Default,
Decodes an instance of the message from a buffer. Read more
source§fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>where
    B: Buf,
    Self: Default,
 
fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>where B: Buf, Self: Default,
Decodes a length-delimited instance of the message from the buffer.
source§fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>where
    B: Buf,
    Self: Sized,
 
fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>where B: Buf, Self: Sized,
Decodes an instance of the message from a buffer, and merges it into 
self. Read moresource§fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>where
    B: Buf,
    Self: Sized,
 
fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>where B: Buf, Self: Sized,
Decodes a length-delimited instance of the message from buffer, and
merges it into 
self.source§impl PartialEq<RecoverConfig> for RecoverConfig
 
impl PartialEq<RecoverConfig> for RecoverConfig
source§fn eq(&self, other: &RecoverConfig) -> bool
 
fn eq(&self, other: &RecoverConfig) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.