cdrs_async/query/
query.rs

1use super::QueryParams;
2
3/// Structure that represents CQL query and parameters which will be applied during
4/// its execution.
5#[derive(Debug, Default)]
6pub struct Query {
7  /// Query string.
8  pub query: String,
9  /// Parameters of query.
10  pub params: QueryParams,
11}