We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b98f444 commit 005cfe4Copy full SHA for 005cfe4
1 file changed
crates/table/src/table_index/mod.rs
@@ -1772,7 +1772,7 @@ impl TypedIndex {
1772
}
1773
1774
/// A key into a [`TableIndex`].
1775
-#[derive(derive_more::From)]
+#[derive(Debug, derive_more::From)]
1776
pub struct IndexKey<'a> {
1777
key: TypedIndexKey<'a>,
1778
@@ -1785,6 +1785,7 @@ impl IndexKey<'_> {
1785
1786
1787
/// A decoded range scan bound, which may be a point or a range.
1788
+#[derive(Debug)]
1789
pub enum PointOrRange<'a> {
1790
/// A point scan.
1791
Point(IndexKey<'a>),
0 commit comments