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