rustemo_compiler

Type Alias Result

source
pub type Result<R> = Result<R, Error>;

Aliased Type§

enum Result<R> {
    Ok(R),
    Err(Error),
}

Variants§

§1.0.0

Ok(R)

Contains the success value

§1.0.0

Err(Error)

Contains the error value