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 80e354d commit 2cd43e2Copy full SHA for 2cd43e2
scylla-cql/src/frame/request/query.rs
@@ -243,14 +243,6 @@ impl PagingStateResponse {
243
Self::NoMorePages => ControlFlow::Break(()),
244
}
245
246
-
247
- /// Swaps the paging state response with PagingStateResponse::NoMorePages.
248
- ///
249
- /// Only for use in driver's inner code, as an optimisation.
250
- #[doc(hidden)]
251
- pub fn take(&mut self) -> Self {
252
- std::mem::replace(self, Self::NoMorePages)
253
- }
254
255
256
/// The state of a paged query, i.e. where to resume fetching result rows
0 commit comments