pub struct TaskDescriptor<F> {
pub name: &'static str,
pub restart: RestartPolicy,
pub factory: F,
}Expand description
Configuration passed to TaskSupervisor::spawn to describe a supervised task.
F must be Fn (not FnOnce) to support restarts: the factory is called once on
initial spawn and once per restart attempt.
Fields§
§name: &'static strUnique name for this task (e.g., "config-watcher", "scheduler-loop").
Names must be 'static — they are typically compile-time string literals.
Spawning a task with a name that already exists aborts the prior instance.
restart: RestartPolicyRestart policy applied when the task exits unexpectedly.
factory: FFactory called to produce a new future. Must be Fn for restart support.
Auto Trait Implementations§
impl<F> Freeze for TaskDescriptor<F>where
F: Freeze,
impl<F> RefUnwindSafe for TaskDescriptor<F>where
F: RefUnwindSafe,
impl<F> Send for TaskDescriptor<F>where
F: Send,
impl<F> Sync for TaskDescriptor<F>where
F: Sync,
impl<F> Unpin for TaskDescriptor<F>where
F: Unpin,
impl<F> UnsafeUnpin for TaskDescriptor<F>where
F: UnsafeUnpin,
impl<F> UnwindSafe for TaskDescriptor<F>where
F: UnwindSafe,
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