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