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