pub(crate) type Result<T> = Result<T, JoinError>;
Task result sent back.
enum Result<T> { Ok(T), Err(JoinError), }
Contains the success value
Contains the error value