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