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