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, }