Struct task_group::TaskGroup[][src]

pub struct TaskGroup<E> { /* fields omitted */ }

A TaskGroup is used to spawn a collection of tasks. The collection has two properties:

  • if any task returns an error or panicks, all tasks are terminated.
  • if the TaskManager returned by TaskGroup::new is dropped, all tasks are terminated.

Implementations

impl<E: Send + 'static> TaskGroup<E>[src]

pub fn new() -> (Self, TaskManager<E>)[src]

pub async fn spawn(
    &self,
    name: impl AsRef<str>,
    f: impl Future<Output = Result<(), E>> + Send + 'static
) -> Result<(), SpawnError>
[src]

pub async fn spawn_on(
    &self,
    name: impl AsRef<str>,
    runtime: Handle,
    f: impl Future<Output = Result<(), E>> + Send + 'static
) -> Result<(), SpawnError>
[src]

pub async fn spawn_local(
    &self,
    name: impl AsRef<str>,
    f: impl Future<Output = Result<(), E>> + 'static
) -> Result<(), SpawnError>
[src]

Trait Implementations

impl<E> Clone for TaskGroup<E>[src]

Auto Trait Implementations

impl<E> !RefUnwindSafe for TaskGroup<E>

impl<E> Send for TaskGroup<E> where
    E: Send

impl<E> Sync for TaskGroup<E> where
    E: Send

impl<E> Unpin for TaskGroup<E>

impl<E> !UnwindSafe for TaskGroup<E>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.