Type Alias InferResult

Source
pub type InferResult<T = ()> = Result<T, InferErr>;

Aliased Type§

enum InferResult<T = ()> {
    Ok(T),
    Err(InferErr),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(InferErr)

Contains the error value