pub struct PacemakerConfig {
pub base_timeout_ms: u64,
pub max_timeout_ms: u64,
pub backoff_multiplier: f64,
}Expand description
Configurable pacemaker parameters.
Fields§
§base_timeout_ms: u64§max_timeout_ms: u64§backoff_multiplier: f64Trait Implementations§
Source§impl Clone for PacemakerConfig
impl Clone for PacemakerConfig
Source§fn clone(&self) -> PacemakerConfig
fn clone(&self) -> PacemakerConfig
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 PacemakerConfig
impl Debug for PacemakerConfig
Auto Trait Implementations§
impl Freeze for PacemakerConfig
impl RefUnwindSafe for PacemakerConfig
impl Send for PacemakerConfig
impl Sync for PacemakerConfig
impl Unpin for PacemakerConfig
impl UnsafeUnpin for PacemakerConfig
impl UnwindSafe for PacemakerConfig
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