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