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 681f4ce commit d20c233Copy full SHA for d20c233
scylla/src/transport/iterator.rs
@@ -69,18 +69,18 @@ pub struct RowIterator {
69
}
70
71
struct ReceivedPage {
72
- pub rows: Rows,
73
- pub tracing_id: Option<Uuid>,
+ rows: Rows,
+ tracing_id: Option<Uuid>,
74
75
76
pub(crate) struct PreparedIteratorConfig {
77
- pub prepared: PreparedStatement,
78
- pub values: SerializedValues,
79
- pub partition_key: Option<Bytes>,
80
- pub token: Option<Token>,
81
- pub execution_profile: Arc<ExecutionProfileInner>,
82
- pub cluster_data: Arc<ClusterData>,
83
- pub metrics: Arc<Metrics>,
+ pub(crate) prepared: PreparedStatement,
+ pub(crate) values: SerializedValues,
+ pub(crate) partition_key: Option<Bytes>,
+ pub(crate) token: Option<Token>,
+ pub(crate) execution_profile: Arc<ExecutionProfileInner>,
+ pub(crate) cluster_data: Arc<ClusterData>,
+ pub(crate) metrics: Arc<Metrics>,
84
85
86
/// Fetching pages is asynchronous so `RowIterator` does not implement the `Iterator` trait.\
0 commit comments