Lines Matching defs:Error
6 pub enum Error {
21 impl ::std::error::Error for Error {
26 Error::Syntax(ref err) => err,
27 Error::CompiledTooBig(_) => "compiled program too big",
28 Error::__Nonexhaustive => unreachable!(),
33 impl fmt::Display for Error {
36 Error::Syntax(ref err) => err.fmt(f),
37 Error::CompiledTooBig(limit) => write!(
42 Error::__Nonexhaustive => unreachable!(),
51 impl fmt::Debug for Error {
54 Error::Syntax(ref err) => {
63 Error::CompiledTooBig(limit) => {
66 Error::__Nonexhaustive => {