pub type Result<T> = Result<T, ExprError>;
Expand description
Result type used throughout the crate.
This is a convenience type alias that uses the ExprError
type for the error variant.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(ExprError),
}