pub type TaskOutcome = Result<Transfer, RuntimeError>;Expand description
What a task thread hands back to the task that spawned it: the value the body produced, in the form that may cross the boundary, or why it stopped.
Aliased Type§
pub enum TaskOutcome {
Ok(Transfer),
Err(RuntimeError),
}