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