AstResult

Type Alias AstResult 

Source
pub type AstResult<T> = Result<T, AstError>;

Aliased Type§

pub enum AstResult<T> {
    Ok(T),
    Err(AstError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(AstError)

Contains the error value