pub type Result<T, E = ExprError> = Result<T, E>;
A specialized Result type for expression operations.
enum Result<T, E = ExprError> { Ok(T), Err(E), }
Contains the success value
Contains the error value