Skip to main content

IgResult

Type Alias IgResult 

Source
pub type IgResult<T> = Result<T, IgError>;
Expand description

Result alias returned by the IG client.

Aliased Type§

pub enum IgResult<T> {
    Ok(T),
    Err(IgError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(IgError)

Contains the error value