[src]

std::task::TaskResult

type TaskResult = Result<(), ~Any<Send>>;

Indicates the manner in which a task exited.

A task that completes without failing is considered to exit successfully.

If you wish for this result's delivery to block until all children tasks complete, recommend using a result future.