Skip to content

Commit 098b6dd

Browse files
committed
response: add module docstring
1 parent 64a683a commit 098b6dd

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

scylla/src/response/mod.rs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
110
pub mod legacy_query_result;
211
pub mod query_result;
312
mod request_response;

0 commit comments

Comments
 (0)