Skip to content

Commit 27aeca2

Browse files
authored
Merge pull request #1199 from stanislav-tkach/implement-debug-for-maybe-unset
Implement (derive) Debug for MaybeUnset
2 parents 86efc40 + 846f595 commit 27aeca2

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)