added basic derives to set.rs

This commit is contained in:
ripytide
2023-04-09 18:59:44 +01:00
parent 9fb31df0f7
commit 97cb31c08e
+1
View File
@@ -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<I, K> {
inner: RangeBoundsMap<I, K, ()>,
}