pub type Result<T> = Result<T, TaskFlowError>;
pub enum Result<T> { Ok(T), Err(TaskFlowError), }
Contains the success value
Contains the error value