1
2
3
4
5
6
7
8
9
use super::QueryParams;

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