pub type TaskResult<T = ()> = Result<T, TaskError>;
The result type for task execution.
pub enum TaskResult<T = ()> { Ok(T), Err(TaskError), }
Contains the success value
Contains the error value