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