TypingResult

Type Alias TypingResult 

Source
pub type TypingResult<T> = Result<T, TypingError>;
Expand description

The result of type checking and name resolution

Aliased Type§

pub enum TypingResult<T> {
    Ok(T),
    Err(TypingError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(TypingError)

Contains the error value