Lines Matching defs:Error
11 pub enum Error { enum
47 impl From<SerdeJsonError> for Error { implementation
48 fn from(err: SerdeJsonError) -> Error { in from()
52 impl From<fmt::Error> for Error { implementation
53 fn from(err: fmt::Error) -> Error { in from()
57 impl fmt::Display for Error { implementation
109 impl StdError for Error { implementation
126 pub(crate) fn lookup_error(source: &str, step: &str, path: PathSlice, current: &Value) -> Error { in lookup_error()
156 pub(crate) fn truthiness_error(source: &str, path: PathSlice) -> Error { in truthiness_error()
174 pub(crate) fn not_iterable_error(source: &str, path: PathSlice) -> Error { in not_iterable_error()
186 pub(crate) fn unknown_template(source: &str, name: &str) -> Error { in unknown_template()
195 pub(crate) fn unknown_formatter(source: &str, name: &str) -> Error { in unknown_formatter()
204 pub(crate) fn called_template_error(source: &str, template_name: &str, err: Error) -> Error { in called_template_error()
214 pub(crate) fn called_formatter_error(source: &str, formatter_name: &str, err: Error) -> Error { in called_formatter_error()