Result

Type Alias Result 

Source
pub type Result<T> = Result<T, CodegenError>;
Expand description

Code generation result type.

Aliased Type§

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

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(CodegenError)

Contains the error value