pub type Result<T> = Result<T, DiagnosticRecord>;
Expand description
Result type returned by most functions in this crate
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(DiagnosticRecord),
}
pub type Result<T> = Result<T, DiagnosticRecord>;
Result type returned by most functions in this crate
pub enum Result<T> {
Ok(T),
Err(DiagnosticRecord),
}