We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17de099 commit add6a97Copy full SHA for add6a97
scylla/src/utils/pretty.rs
@@ -26,7 +26,7 @@ impl<'a> UpperHex for HexBytes<'a> {
26
27
// Displays a CqlValue. The syntax should resemble the CQL literal syntax
28
// (but no guarantee is given that it's always the same).
29
-pub(crate) struct CqlValueDisplayer<C>(pub C);
+pub(crate) struct CqlValueDisplayer<C>(pub(crate) C);
30
31
impl<C> Display for CqlValueDisplayer<C>
32
where
@@ -154,7 +154,7 @@ impl<'a> Display for CqlStringLiteralDisplayer<'a> {
154
}
155
156
157
-pub(crate) struct CommaSeparatedDisplayer<I>(pub I);
+pub(crate) struct CommaSeparatedDisplayer<I>(pub(crate) I);
158
159
impl<I, T> Display for CommaSeparatedDisplayer<I>
160
0 commit comments