From 97cb31c08ed788790c09074cccaebd3b55d5d2ab Mon Sep 17 00:00:00 2001 From: ripytide Date: Sun, 9 Apr 2023 18:59:44 +0100 Subject: [PATCH] added basic derives to set.rs --- src/range_bounds_set.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/range_bounds_set.rs b/src/range_bounds_set.rs index 387fce1..3eed6f4 100644 --- a/src/range_bounds_set.rs +++ b/src/range_bounds_set.rs @@ -25,6 +25,7 @@ use crate::{ /// See [`RangeBoundsMap`] for more details. /// /// [`RangeBounds`]: https://doc.rust-lang.org/std/ops/trait.RangeBounds.html +#[derive(Debug, Clone, PartialEq)] pub struct RangeBoundsSet { inner: RangeBoundsMap, }