Type Alias BytecodeResult

Source
pub type BytecodeResult = Result<Bytecode, CompilerError>;

Aliased Type§

pub enum BytecodeResult {
    Ok(Bytecode),
    Err(CompilerError),
}

Variants§

§1.0.0

Ok(Bytecode)

Contains the success value

§1.0.0

Err(CompilerError)

Contains the error value