Type Alias yarnspinner_compiler::Result

source ·
pub type Result<T> = Result<T, CompilerError>;

Aliased Type§

enum Result<T> {
    Ok(T),
    Err(CompilerError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(CompilerError)

Contains the error value