From ed72a2e16ece757941786f586bd2a80022892a74 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Mon, 15 Aug 2022 12:07:30 +0200 Subject: Add derive of `Eq` where possible --- src/tokenizer.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/tokenizer.rs') diff --git a/src/tokenizer.rs b/src/tokenizer.rs index 5b5e311..d66e8f6 100644 --- a/src/tokenizer.rs +++ b/src/tokenizer.rs @@ -102,7 +102,7 @@ struct Attempt { /// The internal state of a tokenizer, not to be confused with states from the /// state machine, this instead is all the information about where we currently /// are and what’s going on. -#[derive(Debug, Clone)] +#[derive(Clone, Debug)] struct Progress { /// Length of `events`. /// -- cgit