aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2023-05-11 21:08:27 +0200
committerHampusM <hampus@hampusmat.com>2023-05-11 21:08:27 +0200
commite3a0736f8f73d310a8031fdd169467b7b26bc981 (patch)
tree468538739da640ea825ac851f8da3ae80e08a59a
parent8818a94ad79ebdebdf4c7819bd42e363c63bd630 (diff)
feat: make IgnoreEnd implement PartialEq & Eq
-rw-r--r--src/deserializer/mod.rs2
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.