pub type ReprResult = Result<(SymbolTable, Vec<Expression>), ReprError>;Aliased Type§
pub enum ReprResult {
Ok((SymbolTable, Vec<Expression>)),
Err(ReprError),
}Variants§
Ok((SymbolTable, Vec<Expression>))
Contains the success value
Err(ReprError)
Contains the error value
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.