Type Alias InferResult
pub type InferResult<'db, T> = Result<InferOk<'db, T>, TypeError<DbInterner<'db>>>;Aliased Type§
pub enum InferResult<'db, T> {
Ok(InferOk<'db, T>),
Err(TypeError<DbInterner<'db>>),
}Variants§
Ok(InferOk<'db, T>)
Contains the success value
Err(TypeError<DbInterner<'db>>)
Contains the error value