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