1use super::QueryParams;
23/// 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.
8pub query: String,
9/// Parameters of query.
10pub params: QueryParams,
11}