cdrs-async 0.1.0-alpha.0

Asynchronous driver for Apache Cassandra
Documentation
1
2
3
4
5
6
7
8
9
10
11
use super::QueryParams;

/// Structure that represents CQL query and parameters which will be applied during
/// its execution.
#[derive(Debug, Default)]
pub struct Query {
  /// Query string.
  pub query: String,
  /// Parameters of query.
  pub params: QueryParams,
}