Skip to content

Commit

Permalink
response: add module docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
wprzytula committed Jan 8, 2025
1 parent 51c223b commit 5d24a61
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions scylla/src/response/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
//! This module holds entities that represent responses to requests
//! sent to the cluster by the driver.
//! The following abstractions are involved:
// - [QueryResponse] - a response to any kind of a CQL request.
// - [NonErrorQueryResponse] - a non-error response to any kind of a CQL request.
//! - [QueryResult](query_result::QueryResult) - a result of a CQL QUERY/EXECUTE/BATCH request.
//! - [QueryRowsResult](query_result::QueryRowsResult) - a result of CQL QUERY/EXECUTE/BATCH
//! request that contains some rows, which can be deserialized by the user.
pub mod legacy_query_result;
pub mod query_result;
mod request_response;
Expand Down

0 comments on commit 5d24a61

Please sign in to comment.