pub struct SupervisorConfig {
pub max_restarts: usize,
pub max_time: Duration,
pub restart_strategy: RestartStrategy,
pub shutdown_strategy: ShutdownStrategy,
}Expand description
Supervisor configuration
Fields§
§max_restarts: usizeMaximum number of restarts allowed
max_time: DurationTime period over which to count restarts
restart_strategy: RestartStrategyRestart strategy to use
shutdown_strategy: ShutdownStrategyDefault shutdown strategy for children
Trait Implementations§
Source§impl Clone for SupervisorConfig
impl Clone for SupervisorConfig
Source§fn clone(&self) -> SupervisorConfig
fn clone(&self) -> SupervisorConfig
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 SupervisorConfig
impl Debug for SupervisorConfig
Auto Trait Implementations§
impl Freeze for SupervisorConfig
impl RefUnwindSafe for SupervisorConfig
impl Send for SupervisorConfig
impl Sync for SupervisorConfig
impl Unpin for SupervisorConfig
impl UnwindSafe for SupervisorConfig
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