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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request