Type Alias chandeliers_err::Result

source ·
pub type Result<T> = Result<T, Error>;
Expand description

Result type with errors that can be emitted by Rustc.

Aliased Type§

enum Result<T> {
    Ok(T),
    Err(Vec<(String, Option<Span>)>),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Vec<(String, Option<Span>)>)

Contains the error value