pub type IgResult<T> = Result<T, IgError>;
Result alias returned by the IG client.
pub enum IgResult<T> { Ok(T), Err(IgError), }
Contains the success value
Contains the error value