pub type TaskJoinResult<T> = Result<T, JoinError>;
A type alias for task join result.
This is used when waiting for asynchronous tasks to complete.
pub enum TaskJoinResult<T> { Ok(T), Err(JoinError), }
Contains the success value
Contains the error value