pub type TaskResult<T = (), E = TaskError> = Result<T, E>;
The type of result returned by a task.
pub enum TaskResult<T = (), E = TaskError> { Ok(T), Err(E), }
Contains the success value
Contains the error value