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 64a683a commit 098b6ddCopy full SHA for 098b6dd
scylla/src/response/mod.rs
@@ -1,3 +1,12 @@
1
+//! This module holds entities that represent responses to requests
2
+//! sent to the cluster by the driver.
3
+//! The following abstractions are involved:
4
+// - [QueryResponse] - a response to any kind of a CQL request.
5
+// - [NonErrorQueryResponse] - a non-error response to any kind of a CQL request.
6
+//! - [QueryResult](query_result::QueryResult) - a result of a CQL QUERY/EXECUTE/BATCH request.
7
+//! - [QueryRowsResult](query_result::QueryRowsResult) - a result of CQL QUERY/EXECUTE/BATCH
8
+//! request that contains some rows, which can be deserialized by the user.
9
+
10
pub mod legacy_query_result;
11
pub mod query_result;
12
mod request_response;
0 commit comments