pub struct RelayConfig {
pub eviction_horizon_ms: Option<u64>,
}Expand description
Relay policy knobs.
Fields§
§eviction_horizon_ms: Option<u64>The stragglers horizon H: a device silent longer than this is
marked DeviceStatus::Evicted. None (the default) never evicts
— the safe, GC-pinning posture a caller must opt out of.
Trait Implementations§
Source§impl Clone for RelayConfig
impl Clone for RelayConfig
Source§impl Debug for RelayConfig
impl Debug for RelayConfig
Auto Trait Implementations§
impl Freeze for RelayConfig
impl RefUnwindSafe for RelayConfig
impl Send for RelayConfig
impl Sync for RelayConfig
impl Unpin for RelayConfig
impl UnsafeUnpin for RelayConfig
impl UnwindSafe for RelayConfig
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