TaskJoinResult

Type Alias TaskJoinResult 

Source
pub type TaskJoinResult<T> = Result<T, JoinError>;
Expand description

A type alias for task join result.

This is used when waiting for asynchronous tasks to complete.

Aliased Type§

pub enum TaskJoinResult<T> {
    Ok(T),
    Err(JoinError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(JoinError)

Contains the error value