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 pub query: String, 8 pub params: QueryParams, 9}