Skip to content

Commit

Permalink
Undo an accidental deletion of #[derive(Debug)]
Browse files Browse the repository at this point in the history
Signed-off-by: max <gmx.sht@gmail.com>
  • Loading branch information
PizzasBear authored and djc committed Dec 7, 2023
1 parent 33eb70c commit 7f30a65
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions askama_parser/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ pub(crate) type ParseResult<'a, T = &'a str> = Result<(&'a str, T), nom::Err<Err
///
/// It cannot be used to replace `ParseError` because it expects a generic, which would make
/// `askama`'s users experience less good (since this generic is only needed for `nom`).
#[derive(Debug)]
pub(crate) struct ErrorContext<'a> {
pub(crate) input: &'a str,
pub(crate) message: Option<Cow<'static, str>>,
Expand Down

0 comments on commit 7f30a65

Please sign in to comment.