pub struct SystemReliabilityConfig {
pub acceptable_failure_rate: f32,
pub recovery_time_threshold_ms: f32,
pub consistency_threshold: f32,
}Expand description
System reliability configuration
Fields§
§acceptable_failure_rate: f32Acceptable failure rate
recovery_time_threshold_ms: f32Recovery time threshold
consistency_threshold: f32Consistency threshold
Trait Implementations§
Source§impl Clone for SystemReliabilityConfig
impl Clone for SystemReliabilityConfig
Source§fn clone(&self) -> SystemReliabilityConfig
fn clone(&self) -> SystemReliabilityConfig
Returns a duplicate 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 SystemReliabilityConfig
impl Debug for SystemReliabilityConfig
Auto Trait Implementations§
impl Freeze for SystemReliabilityConfig
impl RefUnwindSafe for SystemReliabilityConfig
impl Send for SystemReliabilityConfig
impl Sync for SystemReliabilityConfig
impl Unpin for SystemReliabilityConfig
impl UnwindSafe for SystemReliabilityConfig
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