diff options
author | HampusM <hampus@hampusmat.com> | 2023-05-11 21:08:27 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2023-05-11 21:08:27 +0200 |
commit | e3a0736f8f73d310a8031fdd169467b7b26bc981 (patch) | |
tree | 468538739da640ea825ac851f8da3ae80e08a59a | |
parent | 8818a94ad79ebdebdf4c7819bd42e363c63bd630 (diff) |
feat: make IgnoreEnd implement PartialEq & Eq
-rw-r--r-- | src/deserializer/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/deserializer/mod.rs b/src/deserializer/mod.rs index e0c5f6d..d6af9c1 100644 --- a/src/deserializer/mod.rs +++ b/src/deserializer/mod.rs @@ -89,7 +89,7 @@ trait_alias! { /// Whether or not to skip the end tag of a tagged element. /// /// **Should be `No`**. -#[derive(Debug, Default)] +#[derive(Debug, Default, PartialEq, Eq)] pub enum IgnoreEnd { /// Skip the end tag. |