Skip to content

Commit 846f595

Browse files
Implement (derive) Debug for MaybeUnset
1 parent 86efc40 commit 846f595

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scylla-cql/src/value.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ pub struct Unset;
2626
pub struct Counter(pub i64);
2727

2828
/// Enum providing a way to represent a value that might be unset
29-
#[derive(Clone, Copy, Default)]
29+
#[derive(Debug, Clone, Copy, Default)]
3030
pub enum MaybeUnset<V> {
3131
#[default]
3232
Unset,

0 commit comments

Comments
 (0)